From 6e3f6b702f382905e3905682e7adaedf7e58958f Mon Sep 17 00:00:00 2001 From: Phil Burk Date: Sun, 18 Mar 2018 15:30:01 -0700 Subject: [PATCH] configure: support SDK 10.13 in XCode Updated configure.in then ran autoconf to regenerate the configure script. Fixes #274 --- configure | Bin 575805 -> 576035 bytes configure.in | 5 ++++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 52314fe277a012d8c7c1891e1bb4802979c77619..e1703271b253ccf2d992b39eff5420e16a83d319 100755 GIT binary patch delta 60 zcmdlxNqO-U<%Sl<7N!>F7M2#)7Pc+ydj8Wdc(SW985&Q|_hVniXgs~an_XhMoF7M2#)7Pc+ydj8XYxv`5(*9c(OW;ALK31HtI62Ni35&&hW B4)p*4 diff --git a/configure.in b/configure.in index 13816fb..09ae76b 100644 --- a/configure.in +++ b/configure.in @@ -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 -- 2.43.0