Re: Building psql.exe using the free Borland compiler

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: Building psql.exe using the free Borland compiler
Дата
Msg-id 20060528013345.GA1888@surnet.cl
обсуждение исходный текст
Ответ на Re: Building psql.exe using the free Borland compiler  (ljb <ljb220@mindspring.com>)
Ответы Re: Building psql.exe using the free Borland compiler  (Bruce Momjian <pgman@candle.pha.pa.us>)
Список pgsql-interfaces
ljb wrote:
> Found this in the archive from a month or so ago:
> 
> >> > Has anybody succeeded in building psql from 8.1.3 using bcc55?
> >> ...
> > OK, I originally had in the Makefile:
> >
> >    echo \#define SYSCONFDIR "" > pg_config_paths.h
> >
> > I changed it to:
> >
> >    echo \#define SYSCONFDIR \"\" > pg_config_paths.h
> >
> > I hope that properly puts quotes in the file.

> This change is causing me grief when trying to compile libpq from
> PostgreSQL-8.1.4 using Borland BCC32. The above echo command puts
> exactly this into my pg_config_paths.h:
>         #define SYSCONFDIR \"\"

Maybe we should use

echo -e \#define SYSCONFDIR \"\" > pg_config_paths.h

in the Makefile instead.  Does that work for you?

-- 
Alvaro Herrera                                http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support


В списке pgsql-interfaces по дате отправления:

Предыдущее
От: ljb
Дата:
Сообщение: Re: Building psql.exe using the free Borland compiler
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Building psql.exe using the free Borland compiler