diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2012-08-31 16:00:01 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2012-08-31 16:00:41 +0200 |
commit | 7442cf3c4a503394f73cfd930a07982b837513b6 (patch) | |
tree | cdee051143f3ae8aa61dc98f54a733341866801d | |
parent | a9b7c8ba65d74d7ee5fef2750ae9e81945b9e1e3 (diff) |
Don't fail configure with older gstreamer-plugins-base-0.10
Change-Id: Ia00293747d6041b86975f0e6539246310abfb957
-rw-r--r-- | configure.in | 4 |
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 |