From b476e7720c067d75cd72190db7d36e72c3ff6abb Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Tue, 5 Sep 2017 18:06:29 +0200 Subject: build: fix objcc header check $headers is a variable set in the context of other functions (we don't use the "local" keyword in our scripts, so those variables are global). Currently, when checking for AVFoundation/AVFoundation.h, the actual enabled header is math.h. Similarly, when testing for QuartzCore/CoreImage.h, the actual enabled header is CoreGraphics/CoreGraphics.h. This is completely broken and may be the reason why these checks are made in random places. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index a2aad677c8..334b597a8b 100755 --- a/configure +++ b/configure @@ -1118,7 +1118,7 @@ check_header_objcc(){ { echo "#include <$header>" echo "int main(void) { return 0; }" - } | check_objcc && check_stat "$TMPO" && enable_safe $headers + } | check_objcc && check_stat "$TMPO" && enable_safe $header } check_func(){ -- cgit v1.2.3