aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index a92008e..4b4074f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,8 +5,15 @@
# Andreas Buesching <crunchy@tzi.de>
# $id$
+# minimum needed software versions:
+#
+# * libtoolize (GNU libtool) 1.4.3
+# * aclocal (GNU automake) 1.6.3
+# * autoconf (GNU Autoconf) 2.57
+# * automake (GNU automake) 1.6.3
+
export WANT_AUTOMAKE="1.7"
-aclocal && autoconf && automake -a && ./configure $@
+libtoolize -c -f && aclocal && autoconf && automake -a -c -f && ./configure $@
# end of autogen.sh