diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2007-06-06 18:30:22 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-06-06 18:30:22 +0000 |
commit | f20b0dcdba0755985b129b6d48382750f4bdfce2 (patch) | |
tree | fe6981b7395fd2684fe53be7b4a9469e154f7bcb | |
parent | 1b26c3f023172f2ccc5dd770f47025a6bb6b9429 (diff) | |
download | gst-plugins-bad-f20b0dcdba0755985b129b6d48382750f4bdfce2.tar.gz gst-plugins-bad-f20b0dcdba0755985b129b6d48382750f4bdfce2.tar.bz2 gst-plugins-bad-f20b0dcdba0755985b129b6d48382750f4bdfce2.zip |
configure.ac: Bump requirements to released versions of core and -base, and remove special-casing for equalizer and r...
Original commit message from CVS:
* configure.ac:
Bump requirements to released versions of core and -base, and remove
special-casing for equalizer and rtpmanager as it's not needed any
longer.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.ac | 18 |
2 files changed, 9 insertions, 16 deletions
@@ -1,3 +1,10 @@ +2007-06-06 Tim-Philipp Müller <tim at centricular dot net> + + * configure.ac: + Bump requirements to released versions of core and -base, and remove + special-casing for equalizer and rtpmanager as it's not needed any + longer. + 2007-06-06 Jan Schmidt <thaytan@mad.scientist.com> * sys/glsink/glimagesink.c: (gst_glimage_sink_stop), diff --git a/configure.ac b/configure.ac index ad4def80..54fbbaec 100644 --- a/configure.ac +++ b/configure.ac @@ -45,8 +45,8 @@ AM_PROG_LIBTOOL dnl *** required versions of GStreamer stuff *** dnl *** remove rtpmanager/equalizer stuff below when this is updated -GST_REQ=0.10.12.1 -GSTPB_REQ=0.10.12.1 +GST_REQ=0.10.13 +GSTPB_REQ=0.10.13 dnl *** autotools stuff **** @@ -269,20 +269,6 @@ if test "x$HAVE_SYS_SOCKET_H" != "xyes"; then GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/librfb//` fi -dnl Disable rtpmanager if -base isn't the latest -dnl remove this when GSTPB_REQ is updated -if ! $PKG_CONFIG --atleast-version=0.10.12.1 gstreamer-plugins-base-0.10 ; then - GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/rtpmanager//` - AC_MSG_NOTICE([Not building rtpmanager, requires -base CVS (>= 0.10.12.1)]) -fi - -dnl Disable equalizer if we don't have core CVS (won't work otherwise) -dnl remove this when GST_REQ is updated -if ! $PKG_CONFIG --atleast-version=0.10.12.1 gstreamer-0.10 ; then - GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/equalizer//` - AC_MSG_NOTICE([Not building equalizer, requires core CVS (>= 0.10.12.1)]) -fi - AC_SUBST(GST_PLUGINS_SELECTED) |