diff options
author | David Hankins <dhankins@isc.org> | 2009-03-25 18:27:49 +0000 |
---|---|---|
committer | David Hankins <dhankins@isc.org> | 2009-03-25 18:27:49 +0000 |
commit | dd0e62cba5f550f0910ed124d958abf211b0cf25 (patch) | |
tree | e19c37baa87d5ddf2a69dc4951fb387e18e23ac5 /includes/config.h.in | |
parent | e4eef8738baaa08ef37684d005c2cdd6a8ef001f (diff) | |
download | isc-dhcp-dd0e62cba5f550f0910ed124d958abf211b0cf25.tar.gz |
autoheader regeneration
Diffstat (limited to 'includes/config.h.in')
-rw-r--r-- | includes/config.h.in | 33 |
1 files changed, 20 insertions, 13 deletions
diff --git a/includes/config.h.in b/includes/config.h.in index 0b2a29af..edf9f459 100644 --- a/includes/config.h.in +++ b/includes/config.h.in @@ -127,16 +127,12 @@ /* Version number of package */ #undef VERSION -/* Define to 1 if on AIX 3. - System headers sometimes define this. - We just want to avoid a redefinition error message. */ -#ifndef _ALL_SOURCE -# undef _ALL_SOURCE -#endif - -/* Enable GNU extensions on systems that have them. */ -#ifndef _GNU_SOURCE -# undef _GNU_SOURCE +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ +#if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +#elif ! defined __LITTLE_ENDIAN__ +# undef WORDS_BIGENDIAN #endif /* Define to 1 if on MINIX. */ @@ -176,13 +172,24 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE -/* Enable extensions on Solaris. */ -#ifndef __EXTENSIONS__ -# undef __EXTENSIONS__ +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# undef _ALL_SOURCE +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# undef _GNU_SOURCE #endif +/* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif +/* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# undef __EXTENSIONS__ +#endif + |