From: Thiago Santos Date: Mon, 15 Apr 2013 21:40:09 +0000 (-0300) Subject: ios: unconditionally check if we are building for iOS X-Git-Tag: 1.19.3~507^2~13801 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2910613e4a70c5b432403f2ec64506fa42f42bba;p=platform%2Fupstream%2Fgstreamer.git ios: unconditionally check if we are building for iOS Instead of only checking if applemedia is going to be built --- diff --git a/configure.ac b/configure.ac index 8f88f09..033e0d2 100644 --- a/configure.ac +++ b/configure.ac @@ -853,10 +853,8 @@ case "$host" in HAVE_APPLE_MEDIA="no" ;; esac -HAVE_IOS="no" -if test "x$HAVE_APPLE_MEDIA" = "xyes"; then - AC_CHECK_HEADER(MobileCoreServices/MobileCoreServices.h, HAVE_IOS="yes", HAVE_IOS="no", [-]) -fi + +AC_CHECK_HEADER(MobileCoreServices/MobileCoreServices.h, HAVE_IOS="yes", HAVE_IOS="no", [-]) AM_CONDITIONAL(HAVE_IOS, test "x$HAVE_IOS" = "xyes") if test "x$HAVE_IOS" = "xyes"; then