sachiel pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5676eb4ef92f87b406a9a91112513d5368ba8df4
commit 5676eb4ef92f87b406a9a91112513d5368ba8df4 Author: Iván Briano <[email protected]> Date: Mon Dec 23 14:00:14 2013 -0200 Quick and dirty fallback to gst 0.10 if 1.0 is not found --- configure.ac | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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]) --
