diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-03-09 06:41:58 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-03-09 06:41:58 (GMT) |
commit | d4be7a24d441601679c7de0f4387e0ee4b0b9393 (patch) | |
tree | 155039c0ccc7fc716d84f359e244cc1f2d84dd35 | |
parent | 095d2820bb772e46b9aa4c8ac82284f6aea8a6b1 (diff) | |
download | cpython-d4be7a24d441601679c7de0f4387e0ee4b0b9393.zip cpython-d4be7a24d441601679c7de0f4387e0ee4b0b9393.tar.gz cpython-d4be7a24d441601679c7de0f4387e0ee4b0b9393.tar.bz2 |
Merged revisions 78808 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78808 | ronald.oussoren | 2010-03-09 07:40:19 +0100 (Tue, 09 Mar 2010) | 2 lines
Bugfix for the fix for issue 8067
........
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 78477 . +# From configure.in Revision: 78783 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 3.1. # @@ -2160,7 +2160,7 @@ _ACEOF # 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 diff --git a/configure.in b/configure.in index 5889d68..219e925 100644 --- a/configure.in +++ b/configure.in @@ -322,7 +322,7 @@ case $ac_sys_system/$ac_sys_release in # 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 |