Original commit message from CVS:
Add a "MODULES" parameter to GST_CHECK_CONFIGPROG, to pass sets of modules
to the -config script. Convert gnome test to use GST_CHECK_CONFIGPROG.
Original commit message from CVS:
Remove HAVE_GDK_PIXBUF and HAVE_LIBAUDIOFILE from acconfig.h and AC_DEFINE:
nothing uses these.
Add GST_CHECK_CONFIGPROG macro, to check a -config script and set --cflags
and --libs from it.
Replace audiofile and gdk-pixbuf checks with calls to this macro.
Change use of HAVE_LIBAUDIOFILE to USE_LIBAUDIOFILE automake conditional.
Change use of AUDIOFILE_LIBS variable to LIBAUDIOFILE_LIBS.
Original commit message from CVS:
Add DISABLE-BY-DEFAULT argument to GST_CHECK_FEATURE, to allow a feature
to be turned off by default. Turn of XMMS check using this, rather than
a hack. Fix display of commandline parameters for GST_CHECK_FEATURE and
GST_SUBSYSTEM_DISABLE.
Original commit message from CVS:
Removed the GST_CONFIG_DIR from config.h and made a -D CFLAG for it
instead so that we can do full expansion on the sysconfdir.
Original commit message from CVS:
Convert XMMS and LIBGHTTP checks to use GST_CHECK_FEATURE()
XMMS check is turned off by default (though not in a very neat way)
Original commit message from CVS:
Added feature check macro, GST_CHECK_FEATURE.
Moved generation of configure.{in,ac} into a separate script.
Add hack to the script to stop automake complaining about missing
AM_CONDITIONAL call.
Replace ESD check by a call to GST_CHECK_FEATURE.
Original commit message from CVS:
Move config dir from /etc/gstreamer to ${sysconfdir}/gstreamer by default:
more portable, configurable, and standard.
Original commit message from CVS:
Reworked the arguments for DEBUG and INFO. Removed -debug-verbose.
Renamed GST_DISABLE_XML to GST_DISABLE_LOADSAVE and added --disable flag.
Original commit message from CVS:
New check for libesd, a model for all the other checks I hope. Need to
convert all the other checks to operate like this.
Original commit message from CVS:
Let's just say I have a better understanding of autoconf now (I should really have read the manual first). It helps to remember that yes != no ;)
Original commit message from CVS:
Oops: fixed SDL header check: put flags in CPPFLAGS rather than CFLAGS.
We should really filter the SDL_CFLAGS and only pass appropriate options
through, but this works well enough for now.
Original commit message from CVS:
Add comments to many (but not all :( ) AC_DEFINES in configure scripts.
Add note about debian packages for building documentation.
Original commit message from CVS:
Add AS and ASFLAGS to configure.base, fixing the build with automake 1.4g
AS is defined in a hacky way: I've asked on the automake list for help
doing this properly.
Original commit message from CVS:
* create a configure.base file, containing the contents of
configure.{in,ac}, with those lines specific to one file prepended by
"SUBSTFOR configure.in:" or "SUBSTFOR configure.ac:" appropriately.
* Add lines to autogen.sh to generate configure.in and configure.ac
automatically from this file. (Very simple sed scripts)
* Remove configure.in and configure.ac
This shouldn't cause any problems to anyone, and should make it easy to do
work on configure scripts by just working on configure.base.