* configure.in: Bump version to 1.5b.
[automake.git] / configure.in
blob5e24626587f428656ccc9ab0b76ab011d590e00d
1 # Process this file with autoconf to produce a configure script.
3 # Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software
4 # Foundation, Inc.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 # 02111-1307, USA.
21 AC_PREREQ(2.52)
22 AC_INIT([GNU Automake], [1.5b], [bug-automake@gnu.org])
24 AC_CONFIG_SRCDIR(automake.in)
25 AC_CONFIG_AUX_DIR(lib)
27 AM_INIT_AUTOMAKE(automake, 1.5b)
29 ACLOCAL="`pwd`/aclocal --acdir=m4"
30 # $AUTOMAKE is always run after a `cd $top_srcdir', hence `.' is really
31 # what we want for perllibdir and libdir.
32 AUTOMAKE="perllibdir=./lib `pwd`/automake --libdir=lib"
34 AC_PATH_PROG(PERL, perl)
35 if test -z "$PERL"; then
36    AC_MSG_ERROR([perl not found])
38 $PERL -e 'require 5.005;' || {
39    AC_MSG_ERROR([perl 5.005 or better is required])
42 AC_CONFIG_FILES([automake], [chmod +x automake])
43 AC_CONFIG_FILES([aclocal], [chmod +x aclocal])
45 AC_OUTPUT([Makefile
46            lib/Makefile
47            lib/Automake/Makefile
48            lib/am/Makefile
49            m4/Makefile
50            tests/Makefile])