From: Ralph Giles Date: Tue, 20 Jun 2006 19:43:44 +0000 (+0000) Subject: Propagate extended automake detection from theora 1.0alpha7. Also, we X-Git-Tag: v1.3.3~393 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4a5cfd841159b0f6082d2fc9a2aed49f4bed74cd;p=platform%2Fupstream%2Flibvorbis.git Propagate extended automake detection from theora 1.0alpha7. Also, we appear to now require and automake version greater than 1.4. I've specified 1.6, but only tested with 1.9. svn path=/trunk/vorbis/; revision=11599 --- diff --git a/Makefile.am b/Makefile.am index c3f58dc..b9d645c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in -AUTOMAKE_OPTIONS = foreign dist-zip +AUTOMAKE_OPTIONS = 1.6 foreign dist-zip SUBDIRS = lib include doc examples vq diff --git a/autogen.sh b/autogen.sh index c9a4e3f..f0eeb06 100755 --- a/autogen.sh +++ b/autogen.sh @@ -42,7 +42,8 @@ if test -r Makefile.am; then fi else echo -n "checking for automake $AM_NEEDED or later... " - for am in automake-$AM_NEEDED automake$AM_NEEDED automake; do + for am in automake-$AM_NEEDED automake$AM_NEEDED \ + automake automake-1.7 automake-1.8 automake-1.9; do ($am --version < /dev/null > /dev/null 2>&1) || continue ver=`$am --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT` verneeded=`echo $AM_NEEDED | $VERSIONMKINT` @@ -54,7 +55,8 @@ if test -r Makefile.am; then done test -z $AUTOMAKE && echo "no" echo -n "checking for aclocal $AM_NEEDED or later... " - for ac in aclocal-$AM_NEEDED aclocal$AM_NEEDED aclocal; do + for ac in aclocal-$AM_NEEDED aclocal$AM_NEEDED \ + aclocal aclocal-1.7 aclocal-1.8 aclocal-1.9; do ($ac --version < /dev/null > /dev/null 2>&1) || continue ver=`$ac --version < /dev/null | head -n 1 | $VERSIONGREP | $VERSIONMKINT` verneeded=`echo $AM_NEEDED | $VERSIONMKINT`