diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-03-08 07:02:03 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-03-08 07:02:03 (GMT) |
commit | b8f11a665e4ae30ae46494342e11718e69f79a88 (patch) | |
tree | b425a8061827b57dfebce44d66033b9c44a3e793 /configure.in | |
parent | 57a4b983a66ec5cd9b5af37cb6095cfc188f053a (diff) | |
download | cpython-b8f11a665e4ae30ae46494342e11718e69f79a88.zip cpython-b8f11a665e4ae30ae46494342e11718e69f79a88.tar.gz cpython-b8f11a665e4ae30ae46494342e11718e69f79a88.tar.bz2 |
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 4cc3491..b1450af 100644 --- a/configure.in +++ b/configure.in @@ -319,6 +319,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. |