summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-11 12:01:50 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-11 12:09:17 +0200
commitab819ab4f49ec7e0d57dcf8bf77beb8cd323ceb1 (patch)
treebf6afcefce942944c9bbf2d72cad694c0c8a70bb
parent8712f0555baab0830aace424f143ad3c9eeaa028 (diff)
Default to MAC_OS_X_VERSION_MIN_REQUIRED=1080 for Mac OS X SDK >= 10.8
...esp. after aba0106926ceb337035cf46611ff0d590a2af28b "Always build 64-bit code for OS X" combined with the fact that the TDF 64-bit builds state 10.8 as a minimum requirement. For a build with SDK >= 10.8 and no explicit --with-macosx-version-min-required, this also enforces libc++ instead of libstdc++, which is a prerequisite for future use of more C++11 features. Change-Id: Idc770c30ff844b6c3e84d088b5deead0a577e7bf
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 711983973f52..48e24908a22a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2830,8 +2830,10 @@ if test $_os = Darwin; then
case $with_macosx_sdk in
10.5)
with_macosx_version_min_required="10.5";;
- *)
+ 10.6|10.7)
with_macosx_version_min_required="10.6";;
+ *)
+ with_macosx_version_min_required="10.8";;
esac
fi