adding autoreconf -iv as default for all non FreeBSD systems

It should work with recent autotools, tested on Solaris 8 with
sunfreeware.com packages and Debian/testing
This commit is contained in:
hoaxter 2004-10-24 16:05:48 +00:00
parent 8390634da0
commit 0903b9d1bc

View File

@ -26,7 +26,12 @@ if [ `uname -s` = 'FreeBSD' ]; then
AUTOHEADER=autoheader259; export AUTOHEADER
AUTOCONF=autoconf259; export AUTOCONF
autoreconf259 -v
else
echo "Using your default auto* tools"
#this should work with recent autotools
autoreconf -iv
fi
echo "Now running configure $@"
./configure $@
echo "done."