From af3c3473e09d835fb6edcbf0f6d600ef60207e9d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Mon, 15 Sep 2014 15:36:44 +0300 Subject: [PATCH] configure: And make the preprocessor check work properly --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 537b5cb..d14e0ae 100644 --- a/configure.ac +++ b/configure.ac @@ -517,7 +517,7 @@ if test "x$HAVE_IOS" = "xyes"; then AC_MSG_CHECKING([Checking for __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_8_0]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[ - #if !defined(__IPHONE_OS_VERSION_MIN_REQUIRED) || __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0) + #if !defined(__IPHONE_OS_VERSION_MIN_REQUIRED) || __IPHONE_OS_VERSION_MIN_REQUIRED < __IPHONE_8_0 #error "Need iOS >= 8.0 for VideoToolbox" #endif ]])], [ AC_MSG_RESULT(yes) -- 2.7.4