From 9b02dbf8b283a1cf6d08f08e2f4a8554a482d79c Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 5 Jul 2020 19:15:50 +0200 Subject: [PATCH] Correct minimum supported Xcode version, it's 7.2.1, not 7.3 This correction is important because 7.2 can be used under macOS 10.10, unlike 7.3. --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index ac05aba5bf..b34c6d5ffd 100755 --- a/configure +++ b/configure @@ -18725,7 +18725,7 @@ if test "x$retest_macosx_linking" = "xyes"; then elif test "x$macosx_minver_specified" = "xyes"; then error_message="no, try using a different min OS version or omitting it." else - error_message="no, check that command line tools from Xcode 7.3 or later are installed." + error_message="no, check that command line tools from Xcode 7.2.1 or later are installed." fi ac_ext=c diff --git a/configure.in b/configure.in index bac103241f..bbc744e4fb 100644 --- a/configure.in +++ b/configure.in @@ -1350,7 +1350,7 @@ if test "x$retest_macosx_linking" = "xyes"; then elif test "x$macosx_minver_specified" = "xyes"; then error_message="no, try using a different min OS version or omitting it." else - error_message="no, check that command line tools from Xcode 7.3 or later are installed." + error_message="no, check that command line tools from Xcode 7.2.1 or later are installed." fi AC_LANG_PUSH(C)