diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-29 18:57:33 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-29 18:57:33 +0300 |
commit | c30715aee927721cf6648fece4f81872e7f5cf5e (patch) | |
tree | ac361cec48fc042841d9d1a559fbba4b88828a4b | |
parent | 9b98e25ce1e76a86ecf1dce71349e13ce1c1e6d5 (diff) |
VLC is not related to gstreamer
Change-Id: I3b88c1e12a254766f4d8c1de27d0cc9bd2ccbacf
-rw-r--r-- | configure.ac | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac index 682d5dd2569b..89ce3f7a11f5 100644 --- a/configure.ac +++ b/configure.ac @@ -10104,19 +10104,17 @@ AC_SUBST(GSTREAMER_0_10_LIBS) AC_SUBST(ENABLE_GSTREAMER_0_10) dnl =================================================================== -dnl Check whether the VLC libraries are available. +dnl Check whether to build the VLC avmedia backend dnl =================================================================== ENABLE_VLC="" -if test "$build_gstreamer" = "yes"; then - AC_MSG_CHECKING([whether to enable the new VLC avmedia backend]) - if test "x$enable_vlc" != "xno"; then - ENABLE_VLC="TRUE" - AC_MSG_RESULT([yes]) - else - AC_MSG_RESULT([no]) - fi +AC_MSG_CHECKING([whether to enable the VLC avmedia backend]) +if test $_os != iOS -a $_os != Android -a "$enable_vlc" = yes; then + ENABLE_VLC="TRUE" + AC_MSG_RESULT([yes]) +else + AC_MSG_RESULT([no]) fi AC_SUBST(ENABLE_VLC) |