Move LADPSA plugin from -good for the release, as it's not quite ready to be enabled...
authorJan Schmidt <thaytan@mad.scientist.com>
Mon, 18 Dec 2006 16:47:23 +0000 (16:47 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Mon, 18 Dec 2006 16:47:23 +0000 (16:47 +0000)
Original commit message from CVS:
* configure.ac:
* ext/Makefile.am:
* ext/ladspa/*:
Move LADPSA plugin from -good for the release, as it's not quite
ready to be enabled by default in the -good module yet.

ChangeLog
configure.ac
ext/Makefile.am

index 257c075..530d763 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
 
+       * configure.ac:
+       * ext/Makefile.am:
+       * ext/ladspa/*:
+         Move LADPSA plugin from -good for the release, as it's not quite
+         ready to be enabled by default in the -good module yet.
+
+2006-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
+
        * gst/qtdemux/qtdemux.c: (gst_qtdemux_chain),
        (gst_qtdemux_add_stream):
          Don't output g_warning for an unsupported format, just send a
index 0dc3294..df6b049 100644 (file)
@@ -498,6 +498,12 @@ GST_CHECK_FEATURE(JACK, Jack, jack, [
   AC_SUBST(JACK_LIBS)
 ])
 
+dnl *** ladspa ***
+translit(dnm, m, l) AM_CONDITIONAL(USE_LADSPA, true)
+GST_CHECK_FEATURE(LADSPA, [ladspa], ladspa, [
+  AC_CHECK_HEADER(ladspa.h, HAVE_LADSPA="yes", HAVE_LADSPA="no")
+])
+
 dnl *** libmms ***
 translit(dnm, m, l) AM_CONDITIONAL(USE_LIBMMS, true)
 GST_CHECK_FEATURE(LIBMMS, [mms protocol library], libmms, [
@@ -747,6 +753,7 @@ AM_CONDITIONAL(USE_FAAC, false)
 AM_CONDITIONAL(USE_FAAD, false)
 AM_CONDITIONAL(USE_GSM, false)
 AM_CONDITIONAL(USE_IVORBIS, false)
+AM_CONDITIONAL(USE_LADSPA, false)
 AM_CONDITIONAL(USE_LIBMMS, false)
 AM_CONDITIONAL(USE_MUSEPACK, false)
 AM_CONDITIONAL(USE_MUSICBRAINZ, false)
@@ -851,6 +858,7 @@ ext/faad/Makefile
 ext/gsm/Makefile
 ext/ivorbis/Makefile
 ext/jack/Makefile
+ext/ladspa/Makefile
 ext/libmms/Makefile
 ext/Makefile
 ext/mpeg2enc/Makefile
index 252a06f..5179df8 100644 (file)
@@ -112,6 +112,12 @@ else
 JACK_DIR=
 endif
 
+if USE_LADSPA
+LADSPA_DIR = ladspa
+else
+LADSPA_DIR =
+endif
+
 # if USE_LCS
 # LCS_DIR=lcs
 # else
@@ -258,6 +264,7 @@ SUBDIRS=\
        $(HERMES_DIR) \
        $(IVORBIS_DIR) \
        $(JACK_DIR) \
+       $(LADSPA_DIR) \
        $(LCS_DIR) \
        $(LIBFAME_DIR) \
        $(LIBMMS_DIR) \
@@ -291,6 +298,7 @@ DIST_SUBDIRS= \
        faad \
        gsm \
        ivorbis \
+       ladspa \
        jack \
        libmms \
        dts \