From 0903b9d1bc8ac6a5fbdea7303adcfc6f0f60fc55 Mon Sep 17 00:00:00 2001 From: hoaxter <> Date: Sun, 24 Oct 2004 16:05:48 +0000 Subject: [PATCH] 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 --- autogen.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/autogen.sh b/autogen.sh index 4897f2c..8b5c0a0 100755 --- a/autogen.sh +++ b/autogen.sh @@ -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."