Use automake-1.8 if available. Patch from alexander.winston@comcast.net
authorMalcolm Tredinnick <malcolm@src.gnome.org>
Sat, 31 Jan 2004 01:09:16 +0000 (01:09 +0000)
committerMalcolm Tredinnick <malcolm@src.gnome.org>
Sat, 31 Jan 2004 01:09:16 +0000 (01:09 +0000)
* autogen.sh: Use automake-1.8 if available. Patch from
alexander.winston@comcast.net (Alexander Winston). Bug #132966.

svn path=/trunk/; revision=3436

macros2/ChangeLog
macros2/autogen.sh

index bcbbc5b..4cdd4bb 100644 (file)
@@ -1,3 +1,8 @@
+2004-01-31  Malcolm Tredinnick <malcolm@commsecure.com.au>
+
+       * autogen.sh: Use automake-1.8 if available. Patch from
+       alexander.winston@comcast.net (Alexander Winston). Bug #132966.
+
 2004-01-25  Malcolm Tredinnick <malcolm@commsecure.com.au>
 
        * autogen.sh: Deprecate the use of GNOME2_DIR and allow the use
index a4a0070..4d94e49 100644 (file)
@@ -261,9 +261,10 @@ AUTOHEADER=`echo $AUTOCONF | sed s/autoconf/autoheader/`
 
 case $REQUIRED_AUTOMAKE_VERSION in
     1.4*) automake_progs="automake-1.4" ;;
-    1.5*) automake_progs="automake-1.5 automake-1.6 automake-1.7" ;;
-    1.6*) automake_progs="automake-1.6 automake-1.7" ;;
-    1.7*) automake_progs="automake-1.7" ;;
+    1.5*) automake_progs="automake-1.5 automake-1.6 automake-1.7 automake-1.8" ;;
+    1.6*) automake_progs="automake-1.6 automake-1.7 automake-1.8" ;;
+    1.7*) automake_progs="automake-1.7 automake-1.8" ;;
+    1.8*) automake_progs="automake-1.8" ;;
 esac
 version_check automake AUTOMAKE "$automake_progs" $REQUIRED_AUTOMAKE_VERSION \
     "http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz" || DIE=1