From 66affbf74c87fb39866fe4315aedb6fc6f560bfb Mon Sep 17 00:00:00 2001 From: Richard Boulton Date: Tue, 29 May 2001 16:40:07 +0000 Subject: [PATCH] Add checks for appropriate versions of automake. Original commit message from CVS: Add checks for appropriate versions of automake. Add check that automake has been patched if it is a version which requires a patch. Please check that this doesn't cause problems: it's a bit of a hairy test, so I might well have mucked it up and broken some people's build systems. Hope not, though. ;-) --- autogen.sh | 70 ++++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 63 insertions(+), 7 deletions(-) diff --git a/autogen.sh b/autogen.sh index c2315905ce..a2b30f5680 100755 --- a/autogen.sh +++ b/autogen.sh @@ -9,17 +9,56 @@ srcfile=gst/gstobject.h echo echo "You must have autoconf installed to compile $package." echo "Download the appropriate package for your distribution," - echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/" + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf/" DIE=1 } (automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "You must have automake installed to compile $package." - echo "Get ftp://ftp.cygnus.com/pub/home/tromey/automake-1.2d.tar.gz" - echo "(or a newer version if it is available)" + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/automake/" DIE=1 } +automakevermin=`(automake --version|head -n 1|sed 's/^.* //;s/\./ /g;';echo "1 4")|sort -n|head -n 1` +automakevergood=`(automake --version|head -n 1|sed 's/^.* //;s/\./ /g;';echo "1 4f")|sort -n|head -n 1` +if test "x$automakevermin" != "x1 4"; then +# version is less than 1.4, the minimum suitable version + echo + echo "You must have automake version 1.4 or greater installed." + echo "Download the appropriate package for your distribution," + echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/automake/" + DIE=1 +else +if test "x$automakevergood" != "x1 4f"; then +echo "Checking for patched automake" +# version is less than 1.4f, the version with the patch applied +# check that patch is applied +cat > autogen.patch.tmp < /dev/null 2>&1 || { echo @@ -72,12 +111,25 @@ fi libtoolize --copy --force aclocal $ACLOCAL_FLAGS || { + echo echo "aclocal failed - check that all needed development files are present on system" exit 1 } -autoheader -autoconf -automake --add-missing +autoheader || { + echo + echo "autoheader failed" + exit 1 +} +autoconf || { + echo + echo "autoconf failed" + exit 1 +} +automake --add-missing || { + echo + echo "automake failed" + exit 1 +} # now remove the cache, because it can be considered dangerous in this case rm -f config.cache @@ -85,7 +137,11 @@ rm -f config.cache # The new configure options for busy application developers (Hadess) #./configure --enable-maintainer-mode --enable-debug --enable-debug-verbose -./configure --enable-maintainer-mode --enable-plugin-srcdir --enable-debug --enable-debug-verbose "$@" +./configure --enable-maintainer-mode --enable-plugin-srcdir --enable-debug --enable-debug-verbose "$@" || { + echo + echo "configure failed" + exit 1 +} echo echo "Now type 'make' to compile $package."