issue-sl-configure OS X installer: fix installer builds on 10.6 (Snow Leopard) Patch 1: this patch corrects Darwin version tests in configure APPLIES py3k, 3.1, 2.6 NOTE issue-sl-configure-py3k.txt (this file) py3k issue-sl-configure-31.txt 3.1 issue-sl-configure-26.txt 2.6 diff -r b083e5cf03a7 configure.in --- configure.in Thu Mar 04 15:03:59 2010 -0800 +++ configure.in Thu Mar 04 23:30:46 2010 -0800 @@ -319,6 +319,8 @@ # has no effect, don't bother defining them Darwin/@<:@6789@:>@.*) define_xopen_source=no;; + 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 # or has another value. By not (re)defining it, the defaults come in place.