Check for correct versions of libtool/autoconf/automake.
authorjbj <devnull@localhost>
Tue, 26 Jan 1999 19:55:43 +0000 (19:55 +0000)
committerjbj <devnull@localhost>
Tue, 26 Jan 1999 19:55:43 +0000 (19:55 +0000)
CVS patchset: 2760
CVS date: 1999/01/26 19:55:43

autogen.sh

index 9fad0b7..0048059 100755 (executable)
@@ -1,5 +1,25 @@
 #!/bin/sh
 
+LTV="libtoolize (GNU libtool) 1.2d"
+ACV="Autoconf version 2.13"
+AMV="automake (GNU automake) 1.4"
+USAGE="
+You need to install:
+       libtool-1.2d
+       autoconf-2.13
+       automake-2.4
+"
+
+[ "`libtoolize --version`" != "$LTV" ] && echo "$USAGE" && exit 1
+[ "`autoconf --version`" != "$ACV" ] && echo "$USAGE" && exit 1
+[ "`automake --version`" != "$AMV" ] && echo "$USAGE" && exit 1
+
+Copyright (C) 1999 Free Software Foundation, Inc.
+This is free software; see the source for copying conditions.  There is NO
+warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+Written by Tom Tromey <tromey@cygnus.com>
+
 (cd popt; ./autogen.sh --noconfigure "$@")
 libtoolize --copy --force
 aclocal