diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-20 23:13:50 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-20 23:13:50 +0000 |
commit | 2819ff07ce87daee3d0f9c0f8607fa721ee0783f (patch) | |
tree | 9fb9dfdb33de56a6336f51ef98e5ef8ef7cbdd56 /autogen.sh | |
parent | 4c3086096cc54fee7a8069d098e555e4758fe9f5 (diff) | |
download | gstreamer-plugins-bad-2819ff07ce87daee3d0f9c0f8607fa721ee0783f.tar.gz |
added esd added new autogen.sh feature : list all of the libs/plugins you want to disable in a file called "disable" ...
Original commit message from CVS:
added esd
added new autogen.sh feature :
list all of the libs/plugins you want to disable in a file called "disable"
and they will. makes it easier to check stuff when you're working on one
a file "enable" does the opposite. You're on your own if you make them
conflict ;)
CML2 anyone ?
fixed some xvideo stuff, can't remember what though
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh index 78c2cac12..73793c614 100755 --- a/autogen.sh +++ b/autogen.sh @@ -152,6 +152,21 @@ automake -a -c || { CONFIGURE_OPT='--enable-maintainer-mode --enable-plugin-builddir --enable-debug --enable-DEBUG' +# if enable exists, add an -enable option for each of the lines in that file +if test -f enable; then + for a in `cat enable`; do + CONFIGURE_OPT="$CONFIGURE_OPT --enable-$a" + done +fi + +# if disable exists, add an -disable option for each of the lines in that file +if test -f disable; then + for a in `cat disable`; do + CONFIGURE_OPT="$CONFIGURE_OPT --disable-$a" + done +fi + + echo "+ running configure ... " echo "./configure default flags: $CONFIGURE_OPT" echo "using: $CONFIGURE_OPT $@" |