From: philburk Date: Thu, 16 Jan 2014 17:49:33 +0000 (+0000) Subject: [macosx] Add support for SDK 10.8 and 10.9. X-Git-Tag: pa_stable_v19_20140130_r1919~4 X-Git-Url: https://andrewgundersen.net/repos?a=commitdiff_plain;h=d51191a829e13899dd7988cd725bf3ae0577997d;p=portaudio [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. --- diff --git a/configure b/configure index a58b15d..13846d8 100755 Binary files a/configure and b/configure differ diff --git a/configure.in b/configure.in index 8501ea6..305b64e 100644 --- a/configure.in +++ b/configure.in @@ -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