[Python-checkins] r78805 - in python/branches/release26-maint: configure configure.in

ronald.oussoren python-checkins at python.org
Mon Mar 8 19:21:19 CET 2010


Author: ronald.oussoren
Date: Mon Mar  8 19:21:19 2010
New Revision: 78805

Log:
I shall not rush commits....
I shall not rush commits....
I shall not rush commits....
I shall not rush commits....

This actually fixes issue 8067, previous commit for this
issue was broken.


Modified:
   python/branches/release26-maint/configure
   python/branches/release26-maint/configure.in

Modified: python/branches/release26-maint/configure
==============================================================================
--- python/branches/release26-maint/configure	(original)
+++ python/branches/release26-maint/configure	Mon Mar  8 19:21:19 2010
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 78471 .
+# From configure.in Revision: 78781 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.61 for python 2.6.
 #
@@ -2166,7 +2166,7 @@
   # has no effect, don't bother defining them
   Darwin/[6789].*)
     define_xopen_source=no;;
-  Darwin/1[6789].*)
+  Darwin/1[0-9].*)
     define_xopen_source=no;;
   # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but
   # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined

Modified: python/branches/release26-maint/configure.in
==============================================================================
--- python/branches/release26-maint/configure.in	(original)
+++ python/branches/release26-maint/configure.in	Mon Mar  8 19:21:19 2010
@@ -324,7 +324,7 @@
   # has no effect, don't bother defining them
   Darwin/@<:@6789@:>@.*)
     define_xopen_source=no;;
-  Darwin/1@<:@6789@:>@.*)
+  Darwin/1@<:@0-9@:>@.*)
     define_xopen_source=no;;
   # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but
   # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined


More information about the Python-checkins mailing list