mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
The first attempt to support MAS. Dont expect it to work :)
Original commit message from CVS: The first attempt to support MAS. Dont expect it to work :)
This commit is contained in:
parent
7111e0092d
commit
90bee57f2a
2 changed files with 18 additions and 2 deletions
10
configure.ac
10
configure.ac
|
@ -497,6 +497,15 @@ GST_CHECK_FEATURE(DVDNAV, [dvdnav library], dvdnavsrc, [
|
|||
AS_SCRUB_INCLUDE(DVDNAV_CFLAGS)
|
||||
])
|
||||
|
||||
dnl *** MAS ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_MAS, true)
|
||||
GST_CHECK_FEATURE(MAS, [mas library], massink, [
|
||||
translit(dnm, m, l) AC_SUBST(MAS_LIBS)
|
||||
translit(dnm, m, l) AC_SUBST(MAS_CFLAGS)
|
||||
GST_CHECK_CONFIGPROG(MAS, mas-config)
|
||||
AS_SCRUB_INCLUDE(MAS_CFLAGS)
|
||||
])
|
||||
|
||||
dnl **** ESound ****
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_ESD, true)
|
||||
GST_CHECK_FEATURE(ESD, [esound plug-ins], esdsink esdmon, [
|
||||
|
@ -1097,6 +1106,7 @@ ext/lcs/Makefile
|
|||
ext/libfame/Makefile
|
||||
ext/libpng/Makefile
|
||||
ext/mad/Makefile
|
||||
ext/mas/Makefile
|
||||
ext/mikmod/Makefile
|
||||
ext/mjpegtools/Makefile
|
||||
ext/mpeg2dec/Makefile
|
||||
|
|
|
@ -64,6 +64,12 @@ else
|
|||
ESD_DIR=
|
||||
endif
|
||||
|
||||
if USE_MAS
|
||||
MAS_DIR=mas
|
||||
else
|
||||
MAS_DIR=
|
||||
endif
|
||||
|
||||
## if USE_FESTIVAL
|
||||
## FESTIVAL_DIR=festival
|
||||
## else
|
||||
|
@ -253,7 +259,7 @@ endif
|
|||
SUBDIRS=$(A52DEC_DIR) $(AALIB_DIR) $(ALSA_DIR) \
|
||||
$(ARTS_DIR) $(ARTSC_DIR) $(AUDIOFILE_DIR) \
|
||||
$(AVIFILE_DIR) $(CDPARANOIA_DIR) \
|
||||
$(DVDREAD_DIR) $(DVDNAV_DIR) $(ESD_DIR) \
|
||||
$(DVDREAD_DIR) $(DVDNAV_DIR) $(ESD_DIR) $(MAS_DIR) \
|
||||
$(FFMPEG_DIR) $(FLAC_DIR) $(GNOMEVFS_DIR) $(GSM_DIR) \
|
||||
$(HERMES_DIR) $(HTTP_DIR) $(JACK_DIR) $(JPEG_DIR) \
|
||||
$(LADSPA_DIR) $(LAME_DIR) $(LCS_DIR) \
|
||||
|
@ -268,7 +274,7 @@ DIST_SUBDIRS=\
|
|||
a52dec aalib alsa \
|
||||
arts artsd avifile \
|
||||
audiofile cdparanoia dv \
|
||||
dvdread dvdnav esd ffmpeg \
|
||||
dvdread dvdnav esd mas ffmpeg \
|
||||
flac gnomevfs gsm \
|
||||
hermes http jack jpeg \
|
||||
ladspa lame lcs libfame libpng \
|
||||
|
|
Loading…
Reference in a new issue