mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
adding sidplay and festival "checks"
Original commit message from CVS: adding sidplay and festival "checks"
This commit is contained in:
parent
6378387cb7
commit
9228f86046
1 changed files with 24 additions and 5 deletions
29
configure.ac
29
configure.ac
|
@ -341,6 +341,14 @@ GST_CHECK_FEATURE(ALSA, [alsa plugins], gstalsa, [
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl *** arts ***
|
dnl *** arts ***
|
||||||
|
|
||||||
|
dnl if mcopidl can't be found there's no use in compiling it
|
||||||
|
AC_CHECK_PROG(MCOPIDL, mcopidl, yes, no)
|
||||||
|
if test "xHAVE_MCOPIDL" = "xno";
|
||||||
|
then
|
||||||
|
USE_ARTS=no
|
||||||
|
fi
|
||||||
|
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_ARTS, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_ARTS, true)
|
||||||
GST_CHECK_FEATURE(ARTS, [arts plugins], arts, [
|
GST_CHECK_FEATURE(ARTS, [arts plugins], arts, [
|
||||||
AM_PATH_ARTS(, HAVE_ARTS=yes, HAVE_ARTS=no)
|
AM_PATH_ARTS(, HAVE_ARTS=yes, HAVE_ARTS=no)
|
||||||
|
@ -410,6 +418,14 @@ GST_CHECK_FEATURE(ESD, [esound plugins], esdsrc esdsink, [
|
||||||
AM_PATH_ESD(0.2.12, HAVE_ESD=yes, HAVE_ESD=no)
|
AM_PATH_ESD(0.2.12, HAVE_ESD=yes, HAVE_ESD=no)
|
||||||
])
|
])
|
||||||
|
|
||||||
|
dnl **** festival ****
|
||||||
|
dnl FIXME until thomas can be bothered to download the 20 MB festival sources
|
||||||
|
dnl this will not go in
|
||||||
|
translit(dnm, m, l) AM_CONDITIONAL(USE_FESTIVAL, true)
|
||||||
|
GST_CHECK_FEATURE(FESTIVAL, [festival plugins], festivalsink, [
|
||||||
|
HAVE_FESTIVAL=no
|
||||||
|
])
|
||||||
|
|
||||||
dnl *** FLAC ***
|
dnl *** FLAC ***
|
||||||
dnl thomas : checking for compile with main instead of actual function,
|
dnl thomas : checking for compile with main instead of actual function,
|
||||||
dnl since that made autoconf break (for version 2.13)
|
dnl since that made autoconf break (for version 2.13)
|
||||||
|
@ -549,17 +565,20 @@ GST_CHECK_FEATURE(SHOUT, [shout plugin], icecastsend, [
|
||||||
AC_SUBST(SHOUT_LIBS)
|
AC_SUBST(SHOUT_LIBS)
|
||||||
])
|
])
|
||||||
|
|
||||||
|
dnl *** sidplay ***
|
||||||
|
dnl FIXME : make this work
|
||||||
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SIDPLAY, true)
|
||||||
|
GST_CHECK_FEATURE(SIDPLAY, [sidplay plugin], sidplay, [
|
||||||
|
GST_CHECK_LIBHEADER(SIDPLAY, sidplay, sidTune(), ,sidplay/sidtune.h,SIDPLAY_LIBS="-lsidplay")
|
||||||
|
AC_SUBST(SIDPLAY_LIBS)
|
||||||
|
])
|
||||||
|
|
||||||
dnl *** smoothwave ***
|
dnl *** smoothwave ***
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_SMOOTHWAVE, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SMOOTHWAVE, true)
|
||||||
GST_CHECK_FEATURE(SMOOTHWAVE, [smoothwave plugin], smoothwave, [
|
GST_CHECK_FEATURE(SMOOTHWAVE, [smoothwave plugin], smoothwave, [
|
||||||
if test $HAVE_GTK = "yes"; then HAVE_SMOOTHWAVE=yes; fi;
|
if test $HAVE_GTK = "yes"; then HAVE_SMOOTHWAVE=yes; fi;
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl for sidplay
|
|
||||||
dnl FIXME : make this work
|
|
||||||
dnl AC_PATH_LIBSIDPLAY
|
|
||||||
|
|
||||||
|
|
||||||
dnl *** vorbis ***
|
dnl *** vorbis ***
|
||||||
dnl AM_PATH_VORBIS only takes two options
|
dnl AM_PATH_VORBIS only takes two options
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_VORBIS, true)
|
||||||
|
|
Loading…
Reference in a new issue