Re: cdefs and XFree86

2002-04-04 Thread Mike Barcroft
Paul Richards <[EMAIL PROTECTED]> writes: > The recent changes to /usr/include/sys/cdefs.h have broken the build of > XFree86-Server. > > The problem is with the _XOPEN_SOURCE macro. At line cdefs.h it's > checked i.e. > > #if _XOPEN_SOURCE >= 600 > > but in XFree86 it's defined as > > #define

Re: cdefs and XFree86

2002-04-04 Thread Thomas Quinot
Le 2002-04-04, Paul Richards écrivait : > #if _XOPEN_SOURCE >= 600 Could be changed to #if (_XOPEN_SOURCE - 0) >= 600 -- [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

cdefs and XFree86

2002-04-04 Thread Paul Richards
The recent changes to /usr/include/sys/cdefs.h have broken the build of XFree86-Server. The problem is with the _XOPEN_SOURCE macro. At line cdefs.h it's checked i.e. #if _XOPEN_SOURCE >= 600 but in XFree86 it's defined as #define _XOPEN_SOURCE Paul. To Unsubscribe: send mail to [EMAIL PRO