"Kent Johnson" <[EMAIL PROTECTED]> writes: > > That mess that you got could be due to something simple like 'bool' > > getting redefined, so you may want to add in -DHAS_BOOL to the compile > > line and see if that changes anything. > > I am retrying with gcc 3.01. Just where do I put the -D line? I'm not > too familiar with makefiles.
One of those things that happens with time... You have two choices: 1) run 'make' again and after it's done bombing, cut and past the 'gcc -c ...' line and paste in -DHAS_BOOL after one of the other -D flags 2) edit your Makefile and Handler/Makefile add -DHAS_BOOL to CCFLAGS for example change: CCFLAGS = -D_REENTRANT -D$(SWIG_VERSION) -DDEBIAN to: CCFLAGS = -D_REENTRANT -D$(SWIG_VERSION) -DDEBIAN -DHAS_BOOL jas. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
