From 4f8d0b6f02aa7043656bd354e7d55d2bbed0b5e3 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 19 Oct 2016 14:36:32 +0200 Subject: configure: set min version flags for builds on mac MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This helps building binaries that can work on multiple macOS versions. Help-by: Martin Storsjö Fixes #1069 --- acinclude.m4 | 39 ++++++++++++++++++++++++++++++++++++++- 1 file changed, 38 insertions(+), 1 deletion(-) (limited to 'acinclude.m4') diff --git a/acinclude.m4 b/acinclude.m4 index 312efcb47..ea97400b4 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2015, Daniel Stenberg, , et al. +# Copyright (C) 1998 - 2016, Daniel Stenberg, , et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -3199,3 +3199,40 @@ TEST EINVAL TEST CPPPFLAG="" fi ]) + + +dnl CURL_MAC_CFLAGS +dnl +dnl Check if -mmacosx-version-min or -miphoneos-version-min are set manually, +dnl otherwise do. And set -Werror=partial-availability. +dnl + +AC_DEFUN([CURL_MAC_CFLAGS], [ + + tst_cflags="no" + case $host_os in + darwin*) + tst_cflags="yes" + ;; + esac + + AC_MSG_CHECKING([for good-to-use Mac CFLAGS]) + AC_MSG_RESULT([$tst_cflags]); + + if test "$tst_cflags" = "yes"; then + AC_MSG_CHECKING([for *version-min in CFLAGS]) + min="" + if test -z "$(echo $CFLAGS | grep mmacosx-version-min)" -a + test -z "$(echo $CFLAGS | grep miphoneos-version-min)"; then + min="-mmacosx-version-min=10.5" + CFLAGS="$CFLAGS $min" + fi + if test -z "$min"; then + AC_MSG_RESULT([set by user]) + else + AC_MSG_RESULT([$min set]) + fi + CFLAGS="$CFLAGS -Werror=partial-availability" + fi + +]) -- cgit v1.2.3