configure: Do the AM_CONDITIONAL() after finally setting the variable
authorSebastian Dröge <sebastian@centricular.com>
Mon, 15 Sep 2014 12:25:46 +0000 (15:25 +0300)
committerSebastian Dröge <sebastian@centricular.com>
Mon, 15 Sep 2014 12:25:46 +0000 (15:25 +0300)
configure.ac

index 5d9c75c..537b5cb 100644 (file)
@@ -513,7 +513,6 @@ if test "x$HAVE_IOS" = "xyes"; then
   AC_DEFINE(HAVE_IOS, 1, [Define if building for Apple iOS])
 fi
 
-AM_CONDITIONAL(HAVE_VIDEOTOOLBOX, test "x$HAVE_VIDEOTOOLBOX" = "xyes")
 if test "x$HAVE_IOS" = "xyes"; then
   AC_MSG_CHECKING([Checking for __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_8_0])
 
@@ -527,6 +526,8 @@ if test "x$HAVE_IOS" = "xyes"; then
     HAVE_VIDEOTOOLBOX="no"
   ])
 fi
+
+AM_CONDITIONAL(HAVE_VIDEOTOOLBOX, test "x$HAVE_VIDEOTOOLBOX" = "xyes")
 if test "x$HAVE_VIDEOTOOLBOX" = "xyes"; then
   AC_DEFINE(HAVE_VIDEOTOOLBOX, 1, [Define if building with VideoToolbox])
 fi