summaryrefslogtreecommitdiffstats
path: root/Include/Python.h
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-07-18 22:39:34 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2002-07-18 22:39:34 (GMT)
commit5a7ef7e2b56639073759d9b8a33a6c59fb8e4498 (patch)
tree1d7d7cdaf63f509ac00bf50a7935557fb9b2398c /Include/Python.h
parenta12b4cfaa5459cf45d64b7f882f8968de3d876a8 (diff)
downloadcpython-5a7ef7e2b56639073759d9b8a33a6c59fb8e4498.zip
cpython-5a7ef7e2b56639073759d9b8a33a6c59fb8e4498.tar.gz
cpython-5a7ef7e2b56639073759d9b8a33a6c59fb8e4498.tar.bz2
Define _XOPEN_SOURCE in configure and Python.h.
This gets compilation of posixmodule.c to succeed on Tru64 and does no harm on Linux. We may need to undefine it on some platforms, but let's wait and see. Martin says: > I think it is generally the right thing to define _XOPEN_SOURCE on > Unix, providing a negative list of systems that cannot support this > setting (or preferably solving whatever problems remain). > > I'd put an (unconditional) AC_DEFINE into configure.in early on; it > *should* go into confdefs.h as configure proceeds, and thus be active > when other tests are performed.
Diffstat (limited to 'Include/Python.h')
-rw-r--r--Include/Python.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/Include/Python.h b/Include/Python.h
index 32efa0c..2d5e2a6 100644
--- a/Include/Python.h
+++ b/Include/Python.h
@@ -9,13 +9,8 @@
# define _GNU_SOURCE 1
#endif
-/* Forcing SUSv2 compatibility still produces problems on some
- platforms, True64 and SGI IRIX being two of them, so for now the
- define is switched off. */
-#if 0
#ifndef _XOPEN_SOURCE
-# define _XOPEN_SOURCE 500
-#endif
+# define _XOPEN_SOURCE 500
#endif
/* Include nearly all Python header files */