[Python-checkins] r43536 - python/trunk/configure python/trunk/configure.in

georg.brandl python-checkins at python.org
Sat Apr 1 10:51:26 CEST 2006


Author: georg.brandl
Date: Sat Apr  1 10:51:25 2006
New Revision: 43536

Modified:
   python/trunk/configure
   python/trunk/configure.in
Log:
patch #1416559: don't define _XOPEN_SOURCE on Mac OS Panther


Modified: python/trunk/configure
==============================================================================
--- python/trunk/configure	(original)
+++ python/trunk/configure	Sat Apr  1 10:51:25 2006
@@ -1513,7 +1513,9 @@
     ;;
   # 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
     ;;
 

Modified: python/trunk/configure.in
==============================================================================
--- python/trunk/configure.in	(original)
+++ python/trunk/configure.in	Sat Apr  1 10:51:25 2006
@@ -173,7 +173,9 @@
     ;;
   # 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
     ;;
 


More information about the Python-checkins mailing list