diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 10:19:22 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-10-31 10:19:22 +0100 |
commit | d14538d2501ef0da2e15cf98b79889f3eb5f4d5c (patch) | |
tree | a0697f6e4ab3a81175963bb60c5b7c7376eaeafc /acinclude.m4 | |
parent | 06bc2100d2c6c4b26a10e0751fcabac8e64b1990 (diff) | |
download | curl-d14538d2501ef0da2e15cf98b79889f3eb5f4d5c.tar.gz |
configure: raise the default minimum version for macos to 10.8
follow-up to 4f8d0b6f02aa7043. Since the darwinssl code breaks
otherwise. If you build without darwinssl 10.5 works fine.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index fcc2caf36..f959e3d43 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -3224,7 +3224,7 @@ AC_DEFUN([CURL_MAC_CFLAGS], [ AC_MSG_CHECKING([for *version-min in CFLAGS]) min="" if test -z "$(echo $CFLAGS | grep m.*os.*-version-min)"; then - min="-mmacosx-version-min=10.5" + min="-mmacosx-version-min=10.8" CFLAGS="$CFLAGS $min" fi if test -z "$min"; then |