diff options
author | jstebbins <[email protected]> | 2015-07-30 16:37:54 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-07-30 16:37:54 +0000 |
commit | 669cccc68541bfdeb8afe5b12c0d4664a6bab43c (patch) | |
tree | 5554edf42f8221d871dacca0e9c9b094781e0cc2 /gtk | |
parent | abda8125956e85935f2d39d6bf3d92773c88f4bb (diff) |
LinGui: remove gstreamer-0.10 support
I noticed this isn't working in fedora 22 and I'm not interested in
debugging. So only support gstreamer-1 now.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7386 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/configure.ac | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gtk/configure.ac b/gtk/configure.ac index 38d90670d..fa77354b6 100644 --- a/gtk/configure.ac +++ b/gtk/configure.ac @@ -119,19 +119,13 @@ PKG_PROG_PKG_CONFIG GHB_PACKAGES="gtk+-3.0 $GHB_PACKAGES" GST1_MODULES="gstreamer-1.0 gstreamer-video-1.0 gstreamer-audio-1.0 gstreamer-pbutils-1.0" -GST0_MODULES="gstreamer-0.10 gstreamer-interfaces-0.10 gstreamer-video-0.10 gstreamer-audio-0.10 gstreamer-pbutils-0.10" if test "x$gst_disable" = "xno" ; then PKG_CHECK_MODULES(GStreamer1, [$GST1_MODULES], use_gst1=yes, use_gst1=no) if test "x$use_gst1" = "xyes" ; then GHB_PACKAGES="$GHB_PACKAGES $GST1_MODULES" else - PKG_CHECK_MODULES(GStreamer0, [$GST0_MODULES], use_gst0=yes, use_gst0=no) - if test "x$use_gst0" = "xyes" ; then - GHB_PACKAGES="$GHB_PACKAGES $GST0_MODULES" - else - gst_disable="yes" - fi + gst_disable="yes" fi fi |