From 2b9b5d44a122c9f6433dbf15c4b0a7ecf921c19f Mon Sep 17 00:00:00 2001 From: Nokis Mavrogiannopoulos Date: Wed, 28 Nov 2007 18:29:21 +0000 Subject: upgraded to 0.4.0 --- (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh index dc16b29..742b2cc 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,9 +1,25 @@ #!/bin/sh -m4/buildconf.py \ - --libtoolize \ - --aclocal \ - --automake \ - --autoconf \ - --autoheader -rm -rf autom4te.cache +if [ -z $ACLOCAL ]; then + ACLOCAL=aclocal +fi +if [ -z $AUTOCONF ]; then + AUTOCONF=autoconf +fi +if [ -z $AUTOHEADER ]; then + AUTOHEADER=autoheader +fi +if [ -z $AUTORECONF ]; then + AUTORECONF=autoreconf +fi + +#rm -rf autom4te.cache +$AUTORECONF -f -i +#touch stamp-h.in + +for x in providers/*; do + if [ -e $x/autogen.sh ]; then + echo Generating Config files in $x + (cd $x; ./autogen.sh $*) + fi +done -- cgit v0.9.2