Re: imake-4 build broken

2002-10-13 Thread Vallo Kallaste
On Sat, Oct 12, 2002 at 08:31:52PM -0400, Mike Barcroft [EMAIL PROTECTED] wrote: I don't really understand how this is happening. The uses of NSIG are also conditionalized. If _POSIX_SOURCE is defined, line 46 should not be visible. What rev is your /usr/include/sys/cdefs.h and

Re: imake-4 build broken

2002-10-12 Thread Mike Barcroft
Vallo Kallaste [EMAIL PROTECTED] writes: On Thu, Oct 10, 2002 at 08:03:00PM -0400, Mike Barcroft [EMAIL PROTECTED] wrote: imake-4 port building is broken. I guess that's because xc/config/makedepend/main.c defines _POSIX_SOURCE before including signal.h. Signal.h includes sys/signal.h

Re: imake-4 build broken

2002-10-12 Thread Kris Kennaway
On Sat, Oct 12, 2002 at 08:31:52PM -0400, Mike Barcroft wrote: I've just committed the rest of my signal.h-related patches, can you update your system and let me know if I've fixed the problem. Thanks, this fixes the wdm build too. Kris msg45285/pgp0.pgp Description: PGP signature

Re: imake-4 build broken

2002-10-11 Thread Vallo Kallaste
On Thu, Oct 10, 2002 at 08:03:00PM -0400, Mike Barcroft [EMAIL PROTECTED] wrote: imake-4 port building is broken. I guess that's because xc/config/makedepend/main.c defines _POSIX_SOURCE before including signal.h. Signal.h includes sys/signal.h which has conditional #if

imake-4 build broken

2002-10-10 Thread Vallo Kallaste
Hi imake-4 port building is broken. I guess that's because xc/config/makedepend/main.c defines _POSIX_SOURCE before including signal.h. Signal.h includes sys/signal.h which has conditional #if !defined(_POSIX_SOURCE) and NSIG will be left undefined. Don't know who is in fault here, imake sources

Re: imake-4 build broken

2002-10-10 Thread Mike Barcroft
Vallo Kallaste [EMAIL PROTECTED] writes: Hi imake-4 port building is broken. I guess that's because xc/config/makedepend/main.c defines _POSIX_SOURCE before including signal.h. Signal.h includes sys/signal.h which has conditional #if !defined(_POSIX_SOURCE) and NSIG will be left undefined.