]> Repos - portaudio/commitdiff
configure: support SDK 10.13 in XCode
authorPhil Burk <philburk@mobileer.com>
Sun, 18 Mar 2018 22:30:01 +0000 (15:30 -0700)
committerPhil Burk <philburk@mobileer.com>
Sun, 18 Mar 2018 22:30:36 +0000 (15:30 -0700)
Updated configure.in
then ran autoconf to regenerate the configure script.

Fixes #274

configure
configure.in

index 52314fe277a012d8c7c1891e1bb4802979c77619..e1703271b253ccf2d992b39eff5420e16a83d319 100755 (executable)
Binary files a/configure and b/configure differ
index 13816fb7a34eb9aea37050b86e3543aa0adc9282..09ae76bb758cb57061998e9fdc5282c212554e0e 100644 (file)
@@ -258,8 +258,11 @@ case "${host_os}" in
               elif xcodebuild -version -sdk macosx10.12 Path >/dev/null 2>&1 ; then
                  mac_version_min="-mmacosx-version-min=10.4"
                  mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.12 Path`"
+              elif xcodebuild -version -sdk macosx10.13 Path >/dev/null 2>&1 ; then
+                 mac_version_min="-mmacosx-version-min=10.4"
+                 mac_sysroot="-isysroot `xcodebuild -version -sdk macosx10.13 Path`"
               else
-                 AC_MSG_ERROR([Could not find 10.5 to 10.12 SDK.])
+                 AC_MSG_ERROR([Could not find 10.5 to 10.13 SDK.])
               fi
            esac