summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorThiago Santos <thiago.sousa.santos@collabora.com>2013-04-15 18:40:09 -0300
committerThiago Santos <thiago.sousa.santos@collabora.com>2013-04-16 15:58:12 -0300
commit2910613e4a70c5b432403f2ec64506fa42f42bba (patch)
treee94d73af405226f39d07bfa5b799c88749859304 /configure.ac
parent0fafdf8db1fbba2f9f4c86cdbc7e091202798e23 (diff)
ios: unconditionally check if we are building for iOS
Instead of only checking if applemedia is going to be built
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 8f88f0918..033e0d247 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