Browse Source

Merge pull request #82 from DomT4/mojave_build_fix

configure: update -mmacosx-version-min= to 10.6
tags/0.126.0
Filipe Coelho GitHub 6 years ago
parent
commit
b1c1b85dbe
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      configure.ac

+ 3
- 2
configure.ac View File

@@ -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,


Loading…
Cancel
Save