configure: Check for other variants of the -m*os*-version-min flags

In addition to -miphoneos-version-min, the same version can be set
using -mios-version-min. And for WatchOS and TvOS, there's
-mwatchos-version-min and -mtvos-version-min.
This commit is contained in:
Martin Storsjo 2016-10-20 13:16:10 +03:00 committed by Daniel Stenberg
parent 4f8d0b6f02
commit c9cb17fbd6
1 changed files with 4 additions and 4 deletions

View File

@ -3203,8 +3203,9 @@ TEST EINVAL TEST
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 Check if -mmacosx-version-min, -miphoneos-version-min or any
dnl similar are set manually, otherwise do. And set
dnl -Werror=partial-availability.
dnl
AC_DEFUN([CURL_MAC_CFLAGS], [
@ -3222,8 +3223,7 @@ AC_DEFUN([CURL_MAC_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
if test -z "$(echo $CFLAGS | grep m.*os.*-version-min)"; then
min="-mmacosx-version-min=10.5"
CFLAGS="$CFLAGS $min"
fi