diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-08-10 11:34:06 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-08-10 11:36:12 +0300 |
commit | 7bf5fbdc2b4d4bc332ea5b4028431c191dd88984 (patch) | |
tree | edd35cfdb98e029657a824bc6d27da8a7d24259a /configure.in | |
parent | 0cfed166261968068abbed485ceffd67ca5cbf61 (diff) |
Look for the 10.6 SDK in the same places as the 10.[78] ones
Change-Id: Ia04610dfa5c3aece88888a4337619f833a73480e
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 65ddb9546537..7860aa292624 100644 --- a/configure.in +++ b/configure.in @@ -2548,12 +2548,7 @@ if test "$_os" = "Darwin"; then MACOSX_SDK_PATH=/Xcode3/SDKs/MacOSX10.4u.sdk fi ;; - 10.6) - if test -d /Developer/SDKs/MacOSX10.6.sdk; then - MACOSX_SDK_PATH=/Developer/SDKs/MacOSX10.6.sdk - fi - ;; - 10.7|10.8) + 10.6|10.7|10.8) if test -d /Developer/SDKs/MacOSX$with_macosx_sdk.sdk; then MACOSX_SDK_PATH=/Developer/SDKs/MacOSX$with_macosx_sdk.sdk elif test -x /usr/bin/xcode-select; then |