summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivmai <ivmai>2009-09-26 10:51:59 +0000
committerIvan Maidanski <ivmai@mail.ru>2011-07-26 21:06:48 +0400
commita7b3be020d2ba047f983eb24baaa636b388b1b6e (patch)
tree614439c3339e90327848d64d399a486543e5afbe
parent9b63258fde3b9a65313e431c5d749bb1d21f8579 (diff)
downloadbdwgc-a7b3be020d2ba047f983eb24baaa636b388b1b6e.tar.gz
2009-09-26 Ivan Maidanski <ivmai@mail.ru> (really Petter Urkedal)
* autogen.sh: Update.
-rw-r--r--ChangeLog14
-rw-r--r--autogen.sh7
2 files changed, 13 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 9293c506..f121cf02 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,12 +1,16 @@
2009-09-26 Ivan Maidanski <ivmai@mail.ru> (really Petter Urkedal)
+ * autogen.sh: Update.
+
+2009-09-26 Ivan Maidanski <ivmai@mail.ru> (really Petter Urkedal)
+
* Makefile.am: Don't add libtool.m4 to EXTRA_DIST.
- * acinclude.m4: Place GC_SET_VERSION in [].
+ * acinclude.m4: Fix underquoting of GC_SET_VERSION.
* README.QUICK: Update information for Makefile.
- * Makefile.am: Replace dist_pkgconfig_DATA with pkgconfig_DATA for
- bdw-gc.pc.
- * configure.ac: Enable tracetest.
- * tests/tests.am: Ditto.
+ * Makefile.am: Do not distribute the substituted bdw-gc.pc.
+ * configure.ac: Add AM conditional analog to KEEP_BACK_PTRS.
+ * tests/tests.am: Use it here to conditionally enable tracetest
+ when possible.
2009-09-26 Ivan Maidanski <ivmai@mail.ru>
diff --git a/autogen.sh b/autogen.sh
index afbfc55c..3bbdf3a0 100644
--- a/autogen.sh
+++ b/autogen.sh
@@ -5,7 +5,7 @@ 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.7 1.9 1.8; do
+for v in 1.10 1.9 1.8 1.7; do
if type -p &>/dev/null automake-$v; then
am_version="-$v"
break
@@ -21,10 +21,11 @@ if [ -z "$am_version" ]; then
fi
set -x
-libtoolize --automake --force
aclocal$am_version
-automake$am_version -ac
autoconf
+autoheader
+automake$am_version -ac
+libtoolize --automake --force
set +x
echo
echo "Ready to run './configure'."