diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2002-07-04 15:17:34 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2002-07-04 15:17:34 +0000 |
commit | 36183d06161de772a213da7ba722c1c873feb156 (patch) | |
tree | fdfd2dff5e283fa6bef922dd6c57b4165c13ee31 | |
parent | 964f49cd06d3b855c52c69f1bde4de90af3f42c3 (diff) | |
download | gst-plugins-bad-36183d06161de772a213da7ba722c1c873feb156.tar.gz gst-plugins-bad-36183d06161de772a213da7ba722c1c873feb156.tar.bz2 gst-plugins-bad-36183d06161de772a213da7ba722c1c873feb156.zip |
move rtp to experimental until it's config stuff is done right
Original commit message from CVS:
move rtp to experimental until it's config stuff is done right
-rw-r--r-- | configure.ac | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 78e60152..5fe5fb9a 100644 --- a/configure.ac +++ b/configure.ac @@ -10,7 +10,7 @@ AM_DISABLE_STATIC dnl when going to/from release please set the nano (fourth number) right ! dnl We disable static building for development, for time savings AM_DISABLE_STATIC -AS_VERSION(gst-plugins, GST_PLUGINS, 0, 3, 4, 2) +AS_VERSION(gst-plugins, GST_PLUGINS, 0, 3, 4, 4) AM_INIT_AUTOMAKE($PACKAGE,$VERSION) AS_LIBTOOL(GST_PLUGINS, 0, 0, 0, yes) @@ -64,9 +64,11 @@ GST_CHECK_FEATURE(EXPERIMENTAL, [enable building of experimental plug-ins],, [ AC_MSG_WARN(building experimental plug-ins) USE_TARKIN="yes" + USE_RTP="yes" ],[ AC_MSG_NOTICE(not building experimental plug-ins) USE_TARKIN="no" + USE_RTP="no" ]) dnl broken plug-ins; stuff that doesn't seem to build at the moment @@ -379,14 +381,14 @@ translit(dnm, m, l) AM_CONDITIONAL(USE_CDPARANOIA, true) GST_CHECK_FEATURE(CDPARANOIA, [CDParanoia], cdparanoia, [ GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, cdda_open, -lm, - cdda_interface.h, + cdda/cdda_interface.h, CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia" - HEADER_DIR="no") + HEADER_DIR="yes") GST_CHECK_LIBHEADER(CDPARANOIA, cdda_interface, cdda_open, -lm, - cdda/cdda_interface.h, + cdda_interface.h, CDPARANOIA_LIBS="-lcdda_interface -lcdda_paranoia" - HEADER_DIR="yes") + HEADER_DIR="no") if test "x$HEADER_DIR" = "xyes"; then AC_DEFINE_UNQUOTED(CDPARANOIA_HEADERS_IN_DIR, , |