Re: 7.4Beta1: Compile Failure: UnixWare 7.1.3UP2

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: 7.4Beta1: Compile Failure: UnixWare 7.1.3UP2
Дата
Msg-id 20179.1060186284@sss.pgh.pa.us
обсуждение исходный текст
Ответ на 7.4Beta1: Compile Failure: UnixWare 7.1.3UP2  (Larry Rosenman <ler@lerctr.org>)
Ответы Re: 7.4Beta1: Compile Failure: UnixWare 7.1.3UP2  (Larry Rosenman <ler@lerctr.org>)
Список pgsql-hackers
Larry Rosenman <ler@lerctr.org> writes:
> cc -O -K inline -g -I../../../../src/include -I/usr/local/include  -c -o 
> printtup.o printtup.c
> UX:cc: WARNING: debugging and optimization mutually exclusive; -O disabled
> UX:acomp: ERROR: "printtup.c", line 94: undefined struct/union member: 
> _shutdown

Hmm, that line is
self->pub.shutdown = printtup_shutdown;

Apparently, somewhere in your system headers is
#define shutdown _shutdown

which would not hurt us if it were applied consistently --- but
evidently the DestReceiver struct definition in tcop/dest.h is
read before we encounter the macro definition.  Yech.  Can you
find which system header is thus polluting the namespace?
        regards, tom lane


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

Предыдущее
От: Alessio Bragadini
Дата:
Сообщение: Re: v7.4 Beta 1 fails regression on Digital Unix/Tru64 4.0
Следующее
От: Larry Rosenman
Дата:
Сообщение: Re: 7.4Beta1: Compile Failure: UnixWare 7.1.3UP2