diff options
author | David Schleef <ds@schleef.org> | 2007-04-19 15:43:26 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2007-04-19 15:43:26 +0000 |
commit | fee6896ecb676ee053d77dbe213ce47e0a6ea9be (patch) | |
tree | 21d3b34f829b29fe9869388172a8d68668df8512 | |
parent | 45cc599ee47db35911a09f720992fd375d9c8deb (diff) | |
download | gst-plugins-bad-fee6896ecb676ee053d77dbe213ce47e0a6ea9be.tar.gz gst-plugins-bad-fee6896ecb676ee053d77dbe213ce47e0a6ea9be.tar.bz2 gst-plugins-bad-fee6896ecb676ee053d77dbe213ce47e0a6ea9be.zip |
configure.ac: Change rtpmanager disabling to keep -bad releasable.
Original commit message from CVS:
* configure.ac:
Change rtpmanager disabling to keep -bad releasable.
-rw-r--r-- | ChangeLog | 5 | ||||
m--------- | common | 0 | ||||
-rw-r--r-- | configure.ac | 9 |
3 files changed, 11 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2007-04-19 David Schleef <ds@schleef.org> + + * configure.ac: + Change rtpmanager disabling to keep -bad releasable. + 2007-04-18 David Schleef <ds@schleef.org> * configure.ac: diff --git a/common b/common -Subproject e05f45f13961b851501ca8938aa2049fa96c7b1 +Subproject 765d03a88492fb4ac81d70457f671f3a109e93d diff --git a/configure.ac b/configure.ac index 7d3ffdfb..a05db5d2 100644 --- a/configure.ac +++ b/configure.ac @@ -45,7 +45,7 @@ AM_PROG_LIBTOOL dnl *** required versions of GStreamer stuff *** GST_REQ=0.10.11.1 -GSTPB_REQ=0.10.12.1 +GSTPB_REQ=0.10.11.1 dnl *** autotools stuff **** @@ -265,8 +265,11 @@ if test "x$HAVE_SYS_SOCKET_H" != "xyes"; then GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/librfb//` fi -# Disable rtpmanager -GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/rtpmanager//` +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//` +fi AC_SUBST(GST_PLUGINS_SELECTED) |