summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-09-15 15:36:44 +0300
committerSebastian Dröge <sebastian@centricular.com>2014-09-15 15:36:44 +0300
commitaf3c3473e09d835fb6edcbf0f6d600ef60207e9d (patch)
tree74a9f16435ff79e3afa7ad44d1df3cf5caa601d0 /configure.ac
parentf2255f1e2a064d85388df10989fd4bdce68dc6aa (diff)
downloadgstreamer-plugins-bad-af3c3473e09d835fb6edcbf0f6d600ef60207e9d.tar.gz
configure: And make the preprocessor check work properly
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 537b5cbe2..d14e0aeb8 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 <AvailabilityMacros.h>]], [[
- #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)