[macosx] Add support for SDK 10.8 and 10.9.
This was required to fix a broken build caused by not having SDK 10.7 or earlier.
This commit is contained in:
parent
5583cd452b
commit
d51191a829
2 changed files with 7 additions and 1 deletions
BIN
configure
vendored
BIN
configure
vendored
Binary file not shown.
|
|
@ -243,8 +243,14 @@ case "${host_os}" in
|
|||
elif xcodebuild -version -sdk macosx10.7 Path >/dev/null 2>&1 ; then
|
||||
mac_version_min="-mmacosx-version-min=10.4"
|
||||
mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.7 Path`"
|
||||
elif xcodebuild -version -sdk macosx10.8 Path >/dev/null 2>&1 ; then
|
||||
mac_version_min="-mmacosx-version-min=10.4"
|
||||
mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.8 Path`"
|
||||
elif xcodebuild -version -sdk macosx10.9 Path >/dev/null 2>&1 ; then
|
||||
mac_version_min="-mmacosx-version-min=10.4"
|
||||
mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.9 Path`"
|
||||
else
|
||||
AC_MSG_ERROR([Couldn't find 10.5, 10.6, or 10.7 SDK])
|
||||
AC_MSG_ERROR([Couldn't find 10.5, 10.6, 10.7, 10.8 or 10.9 SDK])
|
||||
fi
|
||||
esac
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue