]> granicus.if.org Git - python/commitdiff
Defunct the _XOPEN_SOURCE define for now. Suggested by Fredrik
authorMarc-André Lemburg <mal@egenix.com>
Fri, 7 Jul 2000 11:24:49 +0000 (11:24 +0000)
committerMarc-André Lemburg <mal@egenix.com>
Fri, 7 Jul 2000 11:24:49 +0000 (11:24 +0000)
Lundh as response to bug reports on True64 and IRIX.

Include/Python.h

index e17abeb276a2c5a3656c8caec4aa583c9b09f502..3389c0a41d8adca33e8b7aab916faeffcc08cd41 100644 (file)
@@ -12,15 +12,20 @@ See the file "Misc/COPYRIGHT" for information on usage and
 redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 ******************************************************************/
 
-/* Enable compiler features including SUSv2 compatibility; switching
-   on C lib defines doesn't work here, because the symbols haven't
-   necessarily been defined yet. */
+/* 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
+
+/* Forcing SUSv2 compatibility still produces problems on some
+   platforms, True64 and SGI IRIX begin two of them, so for now the
+   define is switched off. */
+#if 0
 #ifndef _XOPEN_SOURCE
 # define _XOPEN_SOURCE 500
 #endif
+#endif
 
 /* Include nearly all Python header files */