diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2010-05-08 19:13:21 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2010-05-08 19:13:21 (GMT) |
commit | 0712b5651a67de5ba3bb9dafa243e6a5b0a80846 (patch) | |
tree | db4bc8fe5ea094935f1dfe3325584600f33ecf24 /configure | |
parent | 534b8de63b691c1aa802aa96657cd0df414c559b (diff) | |
download | cpython-0712b5651a67de5ba3bb9dafa243e6a5b0a80846.zip cpython-0712b5651a67de5ba3bb9dafa243e6a5b0a80846.tar.gz cpython-0712b5651a67de5ba3bb9dafa243e6a5b0a80846.tar.bz2 |
Fix configure bug that was misreporting availability of MacOS X 10.5 SDK as available on Linux but not on OS X.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 80969 . +# From configure.in Revision: 80970 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.65 for python 2.7. # @@ -9281,10 +9281,9 @@ FSIORefNum fRef = 0 ; return 0; } + _ACEOF if ac_fn_c_try_compile "$LINENO"; then : - ] -else $as_echo "#define HAVE_OSX105_SDK 1" >>confdefs.h @@ -9292,6 +9291,11 @@ $as_echo "#define HAVE_OSX105_SDK 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } +else + + { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 +$as_echo "no" >&6; } + fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext |