--On Wednesday, August 06, 2003 12:11:24 -0400 Tom Lane <[EMAIL PROTECTED]> wrote:

Larry Rosenman <[EMAIL PROTECTED]> 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?


sys/socket.h:#define shutdown _shutdown


regards, tom lane



-- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 972-414-9812 E-Mail: [EMAIL PROTECTED] US Mail: 1905 Steamboat Springs Drive, Garland, TX 75044-6749


---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to increase your free space map settings

Reply via email to