diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-03-08 07:03:14 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-03-08 07:03:14 (GMT) |
commit | 095d2820bb772e46b9aa4c8ac82284f6aea8a6b1 (patch) | |
tree | 78eef07d74827b1a2350bf4a1d2da27a8782293a /configure.in | |
parent | d01444d325c0e62b846b795e3443e97932271e17 (diff) | |
download | cpython-095d2820bb772e46b9aa4c8ac82284f6aea8a6b1.zip cpython-095d2820bb772e46b9aa4c8ac82284f6aea8a6b1.tar.gz cpython-095d2820bb772e46b9aa4c8ac82284f6aea8a6b1.tar.bz2 |
Merged revisions 78782 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r78782 | ronald.oussoren | 2010-03-08 08:02:03 +0100 (Mon, 08 Mar 2010) | 2 lines
Fix for issue 8067
........
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f5d0342..5889d68 100644 --- a/configure.in +++ b/configure.in @@ -322,6 +322,8 @@ 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@:>@.*) + 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 # or has another value. By not (re)defining it, the defaults come in place. |