From: Sebastian Dröge Date: Mon, 15 Sep 2014 12:36:44 +0000 (+0300) Subject: configure: And make the preprocessor check work properly X-Git-Tag: 1.19.3~507^2~10360 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=af3c3473e09d835fb6edcbf0f6d600ef60207e9d;p=platform%2Fupstream%2Fgstreamer.git configure: And make the preprocessor check work properly --- 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)