gstreamer/makeconfigure
Richard Boulton e0f543c7b3 Do hacky fix for AM_CONDITIONAL for GST_SUBSYSTEM_DISABLE, too.
Original commit message from CVS:
Do hacky fix for AM_CONDITIONAL for GST_SUBSYSTEM_DISABLE, too.
2001-06-26 19:56:22 +00:00

12 lines
434 B
Bash
Executable file

#!/bin/sh
# Run this to generate configure.in and configure.ac from configure.base
# args: $1 - configure file to create
sed "
s/^SUBSTFOR $1://g;
/^SUBSTFOR .*:.*/d;
s/^ *GST_CHECK_FEATURE *(\\([A-Za-z0-9_]*\\) *,/translit(dnm, m, l) AM_CONDITIONAL(USE_\\1, true)\\
GST_CHECK_FEATURE(\\1,/
s/^ *GST_SUBSYSTEM_DISABLE *(\\([A-Za-z0-9_]*\\) *,/translit(dnm, m, l) AM_CONDITIONAL(GST_DISABLE_\\1, true)\\
GST_SUBSYSTEM_DISABLE(\\1,/"