]> granicus.if.org Git - python/commitdiff
Define _XOPEN_SOURCE and _GNU_SOURCE in pyconfig.h, to have them
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 20 Jul 2002 08:51:52 +0000 (08:51 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 20 Jul 2002 08:51:52 +0000 (08:51 +0000)
available in the configure tests already.

Include/Python.h
configure
configure.in
pyconfig.h.in

index 2d5e2a6e3eb18e056648afc2ccf79a726d4694cf..dc9ce457e93388ed1bd43c9824d16e42ddd28d64 100644 (file)
@@ -2,17 +2,6 @@
 #define Py_PYTHON_H
 /* Since this is a "meta-include" file, no #ifdef __cplusplus / extern "C" { */
 
-
-/* Enable compiler features; switching on C lib defines doesn't work
-   here, because the symbols haven't necessarily been defined yet. */
-#ifndef _GNU_SOURCE
-# define _GNU_SOURCE   1
-#endif
-
-#ifndef _XOPEN_SOURCE
-# define _XOPEN_SOURCE 500
-#endif
-
 /* Include nearly all Python header files */
 
 #include "patchlevel.h"
index 4bd474084d82d761fe6ec4f3e861102f516f6a99..7fc3bfd1276cd22a27a34b150f60576a311247cf 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 1.333 .
+# From configure.in Revision: 1.334 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.53.
 #
@@ -1225,6 +1225,23 @@ VERSION=2.3
 
 SOVERSION=1.0
 
+# The later defininition of _XOPEN_SOURCE disables certain features
+# on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone).
+
+cat >>confdefs.h <<\_ACEOF
+#define _GNU_SOURCE 1
+_ACEOF
+
+
+# The definition of _GNU_SOURCE potentially causes a change of the value
+# of _XOPEN_SOURCE. So define it only conditionally.
+
+
+cat >>confdefs.h <<\_ACEOF
+#define _XOPEN_SOURCE 500
+_ACEOF
+
+
 # Arguments passed to configure.
 
 CONFIG_ARGS="$ac_configure_args"
index 208dc056ee75e0c249bde6413096b69838fe7140..98d54d1a479058c5033f9cb488f467218c8befef 100644 (file)
@@ -20,6 +20,19 @@ VERSION=2.3
 AC_SUBST(SOVERSION)
 SOVERSION=1.0
 
+# The later defininition of _XOPEN_SOURCE disables certain features
+# on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone).
+AC_DEFINE(_GNU_SOURCE, 1, [Define on Linux to activate all library features])
+
+# The definition of _GNU_SOURCE potentially causes a change of the value
+# of _XOPEN_SOURCE. So define it only conditionally.
+AH_VERBATIM([_XOPEN_SOURCE],
+[/* Define on UNIX to activate XPG/5 features.  */
+#ifndef _XOPEN_SOURCE
+# define _XOPEN_SOURCE 500
+#endif])
+AC_DEFINE(_XOPEN_SOURCE, 500)
+
 # Arguments passed to configure.
 AC_SUBST(CONFIG_ARGS)
 CONFIG_ARGS="$ac_configure_args"
index 8b149324322ea61d75402d54209d42a418316e50..8a9a1ada50aac8e0012391dae06f75a3f39e2b99 100644 (file)
 /* This must be set to 64 on some systems to enable large file support. */
 #undef _FILE_OFFSET_BITS
 
+/* Define on Linux to activate all library features */
+#undef _GNU_SOURCE
+
 /* This must be defined on some systems to enable large file support. */
 #undef _LARGEFILE_SOURCE
 
 /* Define to force use of thread-safe errno, h_errno, and other functions */
 #undef _REENTRANT
 
+/* Define on UNIX to activate XPG/5 features.  */
+#ifndef _XOPEN_SOURCE
+# define _XOPEN_SOURCE 500
+#endif
+
 /* Define to 1 if type `char' is unsigned and you are not using gcc.  */
 #ifndef __CHAR_UNSIGNED__
 # undef __CHAR_UNSIGNED__