From b6aaf53bbb292748638fdf7a929b5870d57d60d9 Mon Sep 17 00:00:00 2001 From: Bradley Bell Date: Tue, 25 Feb 2003 20:35:48 +0000 Subject: [PATCH] add warning about old auto* versions, use automake --copy --- ChangeLog | 7 +++++++ autogen.sh | 4 +++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b62b3b2f5..cbec2db76 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ +2003-02-25 Bradley Bell + + * autogen.sh: add warning about old auto* versions, use + automake --copy + 2003-02-24 Bradley Bell + * main/gameseq.c, main/movies.c, main/titles.c: Descent I + briefings mostly working * main/movie.c, main/titles.c: fixed some more briefing glitches 2003-02-23 Bradley Bell diff --git a/autogen.sh b/autogen.sh index 07212a61b..d1397d842 100644 --- a/autogen.sh +++ b/autogen.sh @@ -1,8 +1,10 @@ #!/bin/sh set -e +echo "If you get errors, you may need newer versions of automake and autoconf." +echo "You'll need at least automake 1.5 and autoconf 2.50." aclocal $ACLOCAL_FLAGS autoheader -automake --add-missing +automake --add-missing --copy autoconf #./configure "$@" echo "Now you are ready to run ./configure"