|
From: Kouhei S. <nul...@cl...> - 2013-05-17 13:04:29
|
Kouhei Sutou 2013-05-17 22:04:04 +0900 (Fri, 17 May 2013) New Revision: 223f15f048a6aca9d33715b4629383234833c4d8 https://github.com/clear-code/cutter/commit/223f15f048a6aca9d33715b4629383234833c4d8 Message: Disable GStreamer support Because GStreamer 0.10.x doesn't work with GLib >= 2.32. We should support it again! (Or drop it?) Modified files: configure.ac Modified: configure.ac (+3 -3) =================================================================== --- configure.ac 2013-05-17 21:58:56 +0900 (fee13cb) +++ configure.ac 2013-05-17 22:04:04 +0900 (04ddadf) @@ -414,13 +414,13 @@ AC_ARG_ENABLE([gstreamer], AS_HELP_STRING([--disable-gstreamer], [Disable GStreamer support]), [enable_gstreamer=$enableval], - [enable_gstreamer=yes]) + [enable_gstreamer=no]) dnl TODO: enable me again against GStreamer 1.0.0 or later AC_MSG_RESULT([$enable_gstreamer]) gstreamer_exists=no if test "x$enable_gstreamer" = "xyes"; then PKG_CHECK_MODULES(GSTREAMER, - gstreamer-0.10 >= 0.10.0 gstreamer-base-0.10 >= 0.10.0, + gstreamer-1.0 >= 1.0.0 gstreamer-base-1.0 >= 1.0.0, [gstreamer_exists=yes], [gstreamer_exists=no]) AC_SUBST([GSTREAMER_CFLAGS]) AC_SUBST([GSTREAMER_LIBS]) @@ -434,7 +434,7 @@ if test "x$enable_gstreamer" = "xyes"; then [gst_pluginsdir="$withval"], [gst_pluginsdir="auto"]) if test "$gst_pluginsdir" = "auto"; then - gst_pluginsdir=`pkg-config --variable=pluginsdir gstreamer-0.10` + gst_pluginsdir=`pkg-config --variable=pluginsdir gstreamer-1.0` fi AC_MSG_RESULT([$gst_pluginsdir]) AC_SUBST(gst_pluginsdir) |