configure.ac: Add example for the new AG_GST_PARSE_SUBSYSTEM_DISABLE macro.

Original commit message from CVS:
* configure.ac:
Add example for the new AG_GST_PARSE_SUBSYSTEM_DISABLE macro.
This commit is contained in:
Stefan Kost 2007-04-23 14:42:25 +00:00
parent b235a2c289
commit 995c3edb46
3 changed files with 17 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2007-04-23 Stefan Kost <ensonic@users.sf.net>
* configure.ac:
Add example for the new AG_GST_PARSE_SUBSYSTEM_DISABLE macro.
2007-04-19 Edward Hervey <edward@fluendo.com>
* gst/gstbin.override:

2
common

@ -1 +1 @@
Subproject commit 765d03a88492fb4ac81d70457f671f3a109e93de
Subproject commit a19d235c89d99ca7849078d501129f521e30d98d

View file

@ -104,7 +104,7 @@ then
else
IGNORE_GST_0_10_4=""
fi
if test $GST_MINOR_VERSION -lt "5"
then
IGNORE_GST_0_10_5="gst-0.10.5.ignore"
@ -151,7 +151,7 @@ then
IGNORE_GST_0_10_12=""
fi
dnl plugins base
dnl plugins base
if test $GST_PB_MINOR_VERSION -lt "11"
then
IGNORE_GST_PB_0_10_11="gst-pb-0.10.11.ignore"
@ -195,6 +195,15 @@ fi
AC_SUBST(GST_BASE_LIBS)
AC_SUBST(GST_BASE_CFLAGS)
dnl check for gstreamer core features (subsystems)
GST_CONFIGPATH=`$PKG_CONFIG --variable=includedir gstreamer-0.10`"/gst/gstconfig.h"
AG_GST_PARSE_SUBSYSTEM_DISABLES($GST_CONFIGPATH)
if test $GST_DISABLE_LOADSAVE = "1"; then
AC_MSG_WARN("Load/Save XML persistence disabled")
fi
dnl check for gstreamer-controller
PKG_CHECK_MODULES(GST_CONTROLLER, gstreamer-controller-$GST_MAJORMINOR >= $GST_REQ,
HAVE_GST_CONTROLLER="yes", HAVE_GST_CONTROLLER="no")