From: Iván Briano Date: Mon, 23 Dec 2013 16:00:14 +0000 (-0200) Subject: Quick and dirty fallback to gst 0.10 if 1.0 is not found X-Git-Tag: v1.9.0-alpha1~332 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5676eb4ef92f87b406a9a91112513d5368ba8df4;p=platform%2Fupstream%2Fefl.git Quick and dirty fallback to gst 0.10 if 1.0 is not found --- diff --git a/configure.ac b/configure.ac index 0751b39..5a51399 100644 --- a/configure.ac +++ b/configure.ac @@ -1899,7 +1899,12 @@ if test "${want_gstreamer1}" = "yes" -a "${want_gstreamer}" = "yes"; then fi if test "${want_gstreamer1}" = "yes"; then - PKG_CHECK_MODULES([GSTREAMER], [gstreamer-1.0]) + PKG_CHECK_MODULES([GSTREAMER], [gstreamer-1.0],, + [ + AC_MSG_WARN([Asked for GStreamer 1.0, but only 0.10 is available]) + want_gstreamer1="no" + want_gstreamer="yes" + ]) fi if test "${want_gstreamer}" = "yes"; then PKG_CHECK_MODULES([GSTREAMER], [gstreamer-0.10])