summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipe Coelho <falktx@falktx.com>2018-09-16 12:48:28 +0200
committerGitHub <noreply@github.com>2018-09-16 12:48:28 +0200
commitb1c1b85dbe253c75c84382c91848f71998f5ab1f (patch)
tree4197f6c0c09c9ed24676d680b45daba5ed156678
parentcb654ada4ecfd6a95b9fb648ebd33c5af462d380 (diff)
parent721e2bdbe4f62ee4264afe065f1eb5a1d0086ba7 (diff)
downloadjack1-b1c1b85dbe253c75c84382c91848f71998f5ab1f.tar.gz
Merge pull request #82 from DomT4/mojave_build_fix
configure: update -mmacosx-version-min= to 10.6
-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,