"Stephen J. Turnbull" <stephen(a)xemacs.org> writes:
Hi!
FreeBSD builds spew millions of these:
/usr/include/sys/cdefs.h:279: warning: `_POSIX_C_SOURCE' is not
defined
This is the block of code in cdefs.h that causes it:
/* Deal with IEEE Std. 1003.1-1990, in which _POSIX_C_SOURCE == 1. */
#if _POSIX_C_SOURCE == 1
#undef _POSIX_C_SOURCE /* Probably illegal, but beyond caring now. */
#define _POSIX_C_SOURCE 199009
#endif
/* Deal with IEEE Std. 1003.2-1992, in which _POSIX_C_SOURCE == 2. */
#if _POSIX_C_SOURCE == 2
#undef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 199209
#endif
/usr/local/include/compface.h:180: warning: function declaration
isn't a prototype
This line:
int ReadBuf P(()) ;
Is compface still maintained?
Do we want to do something about them? If so, what?
Could we define _POSIX_C_SOURCE (are we compliant - setting a number
should be easy enough :-))?
norbert.