From 8d0ffaf8f42716706496cd3519b590f8c64fb5b2 Mon Sep 17 00:00:00 2001 From: Stefan Kost Date: Sun, 11 Feb 2007 10:51:42 +0000 Subject: [PATCH] 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. --- ChangeLog | 7 +++++++ common | 2 +- configure.ac | 22 +++++++++++++++------- 3 files changed, 23 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index d7d4f6676f..572af1f4a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-02-11 Stefan Kost + + * 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 * ext/lame/gstlame.c: (gst_lame_sink_event), (gst_lame_chain), diff --git a/common b/common index de43a8f3c6..66d97715fc 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit de43a8f3c629983e0bea0b8eb617e52ed35a6cda +Subproject commit 66d97715fc83888fd1b5469c569f0ef5bbea628b diff --git a/configure.ac b/configure.ac index 5ef8b5e533..4d076baeff 100644 --- a/configure.ac +++ b/configure.ac @@ -79,9 +79,9 @@ GST_PLUGINS_ALL="\ asfdemux \ dvdlpcmdec \ dvdsub \ - iec958 \ + iec958 \ mpegaudioparse \ - mpegstream \ + mpegstream \ realmedia \ synaesthesia \ " @@ -103,13 +103,9 @@ AC_ARG_WITH(plugins, done], [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 -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, [ 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") +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 * hardware/architecture *