diff options
author | Jan Schmidt <thaytan@mad.scientist.com> | 2006-12-18 16:47:23 +0000 |
---|---|---|
committer | Jan Schmidt <thaytan@mad.scientist.com> | 2006-12-18 16:47:23 +0000 |
commit | 75f32c38c5aa3470604b9f4d4c7be35bb53a53ad (patch) | |
tree | 3f8aa4b346c905318f029d6c8302028d3ad9617e /configure.ac | |
parent | 446a05bb1d07d60887369a64d4a39c67a6103eab (diff) | |
download | gstreamer-plugins-bad-75f32c38c5aa3470604b9f4d4c7be35bb53a53ad.tar.gz |
Move LADPSA plugin from -good for the release, as it's not quite ready to be enabled by default in the -good module yet.
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.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 0dc3294cd..df6b04946 100644 --- a/configure.ac +++ b/configure.ac @@ -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 |