summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2012-08-31 16:00:01 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2012-08-31 16:00:41 +0200
commit7442cf3c4a503394f73cfd930a07982b837513b6 (patch)
treecdee051143f3ae8aa61dc98f54a733341866801d
parentTemporary workaround for failing XPDF tests (diff)
downloadcore-7442cf3c4a503394f73cfd930a07982b837513b6.tar.gz
core-7442cf3c4a503394f73cfd930a07982b837513b6.zip
Don't fail configure with older gstreamer-plugins-base-0.10
Change-Id: Ia00293747d6041b86975f0e6539246310abfb957
-rw-r--r--configure.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 4e87f1a28697..c954789c589b 100644
--- a/configure.in
+++ b/configure.in
@@ -9348,7 +9348,9 @@ if test "$build_gstreamer_0_10" = "yes"; then
if test "x$enable_gstreamer_0_10" != "xno"; then
ENABLE_GSTREAMER_0_10="TRUE"
AC_MSG_RESULT([yes])
- PKG_CHECK_MODULES( GSTREAMER_0_10, gstreamer-0.10 gstreamer-plugins-base-0.10 gstreamer-interfaces-0.10 )
+ PKG_CHECK_MODULES( [GSTREAMER_0_10], [gstreamer-0.10 gstreamer-plugins-base-0.10 gstreamer-interfaces-0.10],, [
+ PKG_CHECK_MODULES( [GSTREAMER_0_10], [gstreamer-0.10 gstreamer-plugins-base-0.10] )
+ ])
else
AC_MSG_RESULT([no])
fi