diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-04-04 06:03:50 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-04-04 06:03:50 (GMT) |
commit | a058836e969eba03142bc8f01418a28741f70dc3 (patch) | |
tree | c832f3b36756d1f4ec86ad0b309aacd1216b406e /configure.in | |
parent | a7a3cfe792d21a3202e03583b03c9c9fd6dbfe56 (diff) | |
download | cpython-a058836e969eba03142bc8f01418a28741f70dc3.zip cpython-a058836e969eba03142bc8f01418a28741f70dc3.tar.gz cpython-a058836e969eba03142bc8f01418a28741f70dc3.tar.bz2 |
Revert 43615, fixing it properly through quadrigraphs.
Apparently, the code in #1416559 was not generated
through invoking autoconf.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 4fb6cea..2f4df3f 100644 --- a/configure.in +++ b/configure.in @@ -171,18 +171,14 @@ case $ac_sys_system/$ac_sys_release in define_xopen_source=no fi ;; - # XXX(nnorwitz): the 2 cases below should be Darwin/[78].*, - # but autoconf seems to convert that to Darwin/78.* which is incorrect. - # On Mac OS X 10.3, defining _POSIX_C_SOURCE or _XOPEN_SOURCE - # has no effect, don't bother defining them. - Darwin/7.*) - define_xopen_source=no - ;; # On Mac OS X 10.4, defining _POSIX_C_SOURCE or _XOPEN_SOURCE # disables platform specific features beyond repair. - Darwin/8.*) + # On Mac OS X 10.3, defining _POSIX_C_SOURCE or _XOPEN_SOURCE + # has no effect, don't bother defineing them + Darwin/@<:@78@:>@.*) define_xopen_source=no ;; + esac if test $define_xopen_source = yes |