summaryrefslogtreecommitdiff
path: root/includes/config.h.in
diff options
context:
space:
mode:
authorDavid Hankins <dhankins@isc.org>2010-03-24 23:34:43 +0000
committerDavid Hankins <dhankins@isc.org>2010-03-24 23:34:43 +0000
commitefaa0fb24d3bc59ced2ab104be476b14ae61401f (patch)
tree6ee918c654cd50b1b51bdcd9f9e363ae447ee9c3 /includes/config.h.in
parent5b518e92dea3cff91e51a7b271cfc986fe58ee16 (diff)
downloadisc-dhcp-efaa0fb24d3bc59ced2ab104be476b14ae61401f.tar.gz
autoheader regeneration
Diffstat (limited to 'includes/config.h.in')
-rw-r--r--includes/config.h.in37
1 files changed, 15 insertions, 22 deletions
diff --git a/includes/config.h.in b/includes/config.h.in
index 3b1cf564..69f478cf 100644
--- a/includes/config.h.in
+++ b/includes/config.h.in
@@ -136,12 +136,16 @@
/* Version number of package */
#undef VERSION
-/* 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
+/* 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
#endif
/* Define to 1 if on MINIX. */
@@ -182,36 +186,25 @@
#undef _POSIX_SOURCE
/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
- <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
+ <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the
#define below would cause a syntax error. */
#undef _UINT32_T
/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
- <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
+ <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the
#define below would cause a syntax error. */
#undef _UINT8_T
-/* 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
+/* Enable extensions on Solaris. */
+#ifndef __EXTENSIONS__
+# undef __EXTENSIONS__
#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
-
/* Define to the type of a signed integer type of width exactly 16 bits if
such a type exists and the standard includes do not define it. */