summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominyk Tiller <dominyktiller@gmail.com>2018-09-13 16:00:12 +0100
committerDominyk Tiller <dominyktiller@gmail.com>2018-09-13 16:00:12 +0100
commit721e2bdbe4f62ee4264afe065f1eb5a1d0086ba7 (patch)
tree4197f6c0c09c9ed24676d680b45daba5ed156678
parentcb654ada4ecfd6a95b9fb648ebd33c5af462d380 (diff)
downloadjack1-721e2bdbe4f62ee4264afe065f1eb5a1d0086ba7.tar.gz
configure: update -mmacosx-version-min= to 10.6
This could be done other ways if it turns out there's a flood of people out there desperate for 10.4 or 10.5 compatibility, but I expect this is safe enough to solve in the simplest possible way, which is by just bumping the number here to 10.6. Fixes https://github.com/jackaudio/jack1/issues/81.
-rw-r--r--configure.ac5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 9c7cbf1..1681367 100644
--- a/configure.ac
+++ b/configure.ac
@@ -330,8 +330,9 @@ AC_ARG_ENABLE(ancient_libc,
JACK_CORE_CFLAGS="$JACK_CORE_CFLAGS $JACK_LIBC_HELPER_FLAGS"
case $build_os in
- # we need weak linkage which appeared in 10.2, but lets ask for 10.4 anyway
- darwin*) JACK_CORE_CFLAGS="$JACK_CORE_CFLAGS -mmacosx-version-min=10.4" ;;
+ # we need weak linkage which appeared in 10.2, but for compatibility with
+ # macOS 10.14 and above we cannot set a minimum version below 10.6 here.
+ darwin*) JACK_CORE_CFLAGS="$JACK_CORE_CFLAGS -mmacosx-version-min=10.6" ;;
esac
AC_ARG_WITH(cpu-target,