summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2007-04-18 19:45:32 +0000
committerDavid Schleef <ds@schleef.org>2007-04-18 19:45:32 +0000
commit45cc599ee47db35911a09f720992fd375d9c8deb (patch)
tree00488a2f0ccaf0c446c95b21a58507720272af34 /configure.ac
parent72c81a109840b34b08a55981dfd2952a5f4f16e8 (diff)
downloadgst-plugins-bad-45cc599ee47db35911a09f720992fd375d9c8deb.tar.gz
gst-plugins-bad-45cc599ee47db35911a09f720992fd375d9c8deb.tar.bz2
gst-plugins-bad-45cc599ee47db35911a09f720992fd375d9c8deb.zip
Fix wtay's hack. rtpmanager is disabled in configure.ac on line 268.
Original commit message from CVS: * configure.ac: * gst/Makefile.am: Fix wtay's hack. rtpmanager is disabled in configure.ac on line 268.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 97f46b52..7d3ffdfb 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.11.1
+GSTPB_REQ=0.10.12.1
dnl *** autotools stuff ****
@@ -95,6 +95,7 @@ GST_PLUGINS_ALL="\
nuvdemux \
real \
replaygain \
+ rtpmanager \
spectrum \
speed \
qtdemux \
@@ -264,6 +265,9 @@ 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//`
+
AC_SUBST(GST_PLUGINS_SELECTED)