configure.ac: Add --enable-experimental support. Activate synaesthesia when building with --enable-experimental. Fix ...

Original commit message from CVS:
* configure.ac:
Add --enable-experimental support. Activate synaesthesia when building
with --enable-experimental. Fix --enable external configure switch
description.
This commit is contained in:
Stefan Kost 2007-02-11 10:51:42 +00:00
parent 0d4e832887
commit 8d0ffaf8f4
3 changed files with 23 additions and 8 deletions

View File

@ -1,3 +1,10 @@
2007-02-11 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Add --enable-experimental support. Activate synaesthesia when building
with --enable-experimental. Fix --enable external configure switch
description.
2007-02-09 Tim-Philipp Müller <tim at centricular dot net> 2007-02-09 Tim-Philipp Müller <tim at centricular dot net>
* ext/lame/gstlame.c: (gst_lame_sink_event), (gst_lame_chain), * ext/lame/gstlame.c: (gst_lame_sink_event), (gst_lame_chain),

2
common

@ -1 +1 @@
Subproject commit de43a8f3c629983e0bea0b8eb617e52ed35a6cda Subproject commit 66d97715fc83888fd1b5469c569f0ef5bbea628b

View File

@ -79,9 +79,9 @@ GST_PLUGINS_ALL="\
asfdemux \ asfdemux \
dvdlpcmdec \ dvdlpcmdec \
dvdsub \ dvdsub \
iec958 \ iec958 \
mpegaudioparse \ mpegaudioparse \
mpegstream \ mpegstream \
realmedia \ realmedia \
synaesthesia \ synaesthesia \
" "
@ -103,13 +103,9 @@ AC_ARG_WITH(plugins,
done], done],
[GST_PLUGINS_SELECTED=$GST_PLUGINS_ALL]) [GST_PLUGINS_SELECTED=$GST_PLUGINS_ALL])
dnl disable synaesthesia plugin
GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/synaesthesia//`
AC_SUBST(GST_PLUGINS_SELECTED)
dnl ext plug-ins; plug-ins that have external dependencies dnl ext plug-ins; plug-ins that have external dependencies
GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],, GST_CHECK_FEATURE(EXTERNAL, [building of plug-ins with external deps],,
[HAVE_EXTERNAL=yes], enabled, [HAVE_EXTERNAL=yes], enabled,
[ [
AC_MSG_NOTICE(building external plug-ins) AC_MSG_NOTICE(building external plug-ins)
@ -120,6 +116,18 @@ GST_CHECK_FEATURE(EXTERNAL, [enable building of plug-ins with external deps],,
]) ])
AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes") AM_CONDITIONAL(BUILD_EXTERNAL, test "x$BUILD_EXTERNAL" = "xyes")
dnl experimental plug-ins; stuff that hasn't had the dust settle yet
GST_CHECK_FEATURE(EXPERIMENTAL, [building of experimental plug-ins],,
[HAVE_EXPERIMENTAL=yes],disabled,
[
AC_MSG_WARN(building experimental plug-ins)
],[
AC_MSG_NOTICE(not building experimental plug-ins)
GST_PLUGINS_SELECTED=`echo $GST_PLUGINS_SELECTED | $SED -e s/synaesthesia//`
])
AC_SUBST(GST_PLUGINS_SELECTED)
dnl *** checks for platform *** dnl *** checks for platform ***
dnl * hardware/architecture * dnl * hardware/architecture *