summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-04-01 08:51:25 (GMT)
committerGeorg Brandl <georg@python.org>2006-04-01 08:51:25 (GMT)
commit28161e2465a7bbf3cf93976311a8ba2cd5c9f1bb (patch)
treed0893e834e0e423b8bf01311ea2b926b6c6edb4a /configure
parent9cdf56318d3bffbf15643de55a09ef3952bd6914 (diff)
downloadcpython-28161e2465a7bbf3cf93976311a8ba2cd5c9f1bb.zip
cpython-28161e2465a7bbf3cf93976311a8ba2cd5c9f1bb.tar.gz
cpython-28161e2465a7bbf3cf93976311a8ba2cd5c9f1bb.tar.bz2
patch #1416559: don't define _XOPEN_SOURCE on Mac OS Panther
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure b/configure
index c5b795f..7151b2e 100755
--- a/configure
+++ b/configure
@@ -1513,7 +1513,9 @@ case $ac_sys_system/$ac_sys_release in
;;
# 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
;;