diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-10-26 13:33:00 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-10-26 13:33:00 (GMT) |
commit | e4826580bc8ebb37459ae689c71f8ae64e57ad05 (patch) | |
tree | 45231e593c19de359c5d15aa4b81b69d38edf13f /pyconfig.h.in | |
parent | 7fbd01262cab438eb57a72bb66a46c9311aecec2 (diff) | |
download | cpython-e4826580bc8ebb37459ae689c71f8ae64e57ad05.zip cpython-e4826580bc8ebb37459ae689c71f8ae64e57ad05.tar.gz cpython-e4826580bc8ebb37459ae689c71f8ae64e57ad05.tar.bz2 |
Patch #628898: Define _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index c6713de..ce17133 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -785,6 +785,9 @@ this defined. */ #undef _POSIX_1_SOURCE +/* Define to activate features from IEEE Stds 1003.{123}-1995 */ +#undef _POSIX_C_SOURCE + /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE @@ -799,6 +802,9 @@ # define _XOPEN_SOURCE 500 #endif +/* Define to activate Unix95-and-earlier features */ +#undef _XOPEN_SOURCE_EXTENDED + /* Define to 1 if type `char' is unsigned and you are not using gcc. */ #ifndef __CHAR_UNSIGNED__ # undef __CHAR_UNSIGNED__ |