From b6dce64a8ea5e98ce09916a056a7ac51316c9bce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20B=C5=93sch?= Date: Wed, 6 Sep 2017 11:29:23 +0200 Subject: [PATCH] build: add check_apple_framework() This will be used in the following commits. --- configure | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure b/configure index 996cb9f309..8d4ab43933 100755 --- a/configure +++ b/configure @@ -1121,6 +1121,15 @@ check_header_objcc(){ } | check_objcc && check_stat "$TMPO" && enable_safe $header } +check_apple_framework(){ + log check_apple_framework "$@" + framework="$1" + name="$(tolower $framework)" + header="${framework}/${framework}.h" + disable $name + check_header_objcc $header && enable $name && add_extralibs "-framework $framework" +} + check_func(){ log check_func "$@" func=$1