From 4574d80f954f7685407bc7cc3eb9e284b1e6dc9c Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sat, 22 Dec 2001 01:58:59 +0000 Subject: [PATCH] changed -d configure option to --autogen-debug added --autogen-noconfigure option that skips the configure stage adde... Original commit message from CVS: * changed -d configure option to --autogen-debug * added --autogen-noconfigure option that skips the configure stage * added --autogen-nocheck to skip version checks * cleared a little bit of kruft --- autogen.sh | 39 +++++++++++++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 6 deletions(-) diff --git a/autogen.sh b/autogen.sh index a9e4aaf..e8c3b50 100755 --- a/autogen.sh +++ b/autogen.sh @@ -5,7 +5,25 @@ DIE=0 package=GStreamer srcfile=gst/gstobject.h #DEBUG=defined -if test "x$1" = "x-d"; then echo "+ debug output enabled"; DEBUG=defined; fi + +for i in $@; do + if test "$i" = "--autogen-noconfigure"; then + NOCONFIGURE=defined + echo "+ configure run disabled" + elif test "$i" = "--autogen-nocheck"; then + NOCHECK=defined + echo "+ autotools version check disabled" + elif test "$i" = "--autogen-debug"; then + DEBUG=defined + echo "+ debug output enabled" + elif test "$i" = "--help"; then + echo "autogen.sh help options: " + echo " --autogen-noconfigure don't run the configure script" + echo " --autogen-nocheck don't do version checks" + echo " --autogen-debug debug the autogen process" + echo "continuing with the autogen in order to get configure help messages..." + fi +done debug () # print out a debug message if DEBUG is a defined variable @@ -36,7 +54,14 @@ version_check () if test ! -z "$MICRO"; then VERSION=$VERSION.$MICRO; else MICRO=0; fi debug "major $MAJOR minor $MINOR micro $MICRO" - echo -n "+ checking for $1 >= $VERSION ... " + + test -z "$NOCHECK" && { + echo -n "+ checking for $1 >= $VERSION ... " + } || { + echo "+ NOT checking for $1 >= $VERSION, as requested ..." + return 0 + } + ($PACKAGE --version) < /dev/null > /dev/null 2>&1 || { echo @@ -148,12 +173,14 @@ automake -a -c || { exit 1 } -# now remove the cache, because it can be considered dangerous in this case -#echo "+ removing config.cache ... " -#rm -f config.cache - CONFIGURE_OPT='--enable-maintainer-mode --enable-plugin-builddir --enable-debug --enable-DEBUG' +test -n "$NOCONFIGURE" && { + echo "skipping configure stage for package $package, as requested." + echo "autogen.sh done." + exit 0 +} + echo "+ running configure ... " echo "./configure default flags: $CONFIGURE_OPT" echo "using: $CONFIGURE_OPT $@" -- 2.7.4