* src/mm/boehm-gc/autogen.sh: Also work with automake 1.11.
[cacao.git] / src / mm / boehm-gc / autogen.sh
old mode 100755 (executable)
new mode 100644 (file)
index fe66cc0..04014ce
@@ -1,13 +1,32 @@
-#!/bin/sh
+#! /bin/sh
 
-${CACAO_LIBTOOLIZE} --automake
-if test `uname` = 'FreeBSD'; then
-    ${CACAO_ACLOCAL} -I . -I /usr/local/share/aclocal -I /usr/local/share/aclocal19
-else
-    ${CACAO_ACLOCAL}
+set -e
+
+# These version are ok, pre-1.7 is not.  Post 1.7 may produce a lot of
+# warnings for unrelated projects, so prefer 1.7 for now.
+am_version=
+for v in 1.11 1.10 1.9 1.8 1.7; do
+    if type -p &>/dev/null automake-$v; then
+       am_version="-$v"
+       break
+    fi
+done
+if [ -z "$am_version" ]; then
+    case "`automake --version`" in
+       *\ 0.*|*\ 1.[0-6].*|*\ 1.[0-6]\ *)
+           echo "$0: Automake-1.7 or later is needed."
+           exit 2
+           ;;
+    esac
 fi
-${CACAO_AUTOHEADER}
-${CACAO_AUTOMAKE} --add-missing
-${CACAO_AUTOCONF}
 
-(cd libatomic_ops-1.2; ./autogen.sh)
+set -x
+aclocal$am_version
+autoconf
+autoheader
+automake$am_version -ac
+libtoolize --automake --force --copy
+set +x
+echo
+echo "Ready to run './configure'."
+echo