mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
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.
This commit is contained in:
parent
446a05bb1d
commit
75f32c38c5
3 changed files with 24 additions and 0 deletions
|
@ -1,3 +1,11 @@
|
|||
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),
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue