]> granicus.if.org Git - gc/commitdiff
2009-09-26 Ivan Maidanski <ivmai@mail.ru> (really Petter Urkedal)
authorivmai <ivmai>
Sat, 26 Sep 2009 10:51:59 +0000 (10:51 +0000)
committerIvan Maidanski <ivmai@mail.ru>
Tue, 26 Jul 2011 17:06:48 +0000 (21:06 +0400)
* autogen.sh: Update.

ChangeLog
autogen.sh

index 9293c506d045fb0bb0815a8f436e38692cfa328b..f121cf028b8932dd3257013d354949980206ccbb 100644 (file)
--- 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>
 
index afbfc55c057a73d6c1aa328b6706372aa7c3d27b..3bbdf3a0bd12a475f4c920e92e5aa5755a090a93 100644 (file)
@@ -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'."