Case insensitive FS choke on Automake/ vs automake.
[platform/upstream/automake.git] / configure.in
1 # Process this file with autoconf to produce a configure script.
2 AC_INIT(automake.in)
3
4 AM_INIT_AUTOMAKE(automake, 1.4e)
5
6 ACLOCAL="`pwd`/aclocal --acdir=m4"
7 AUTOMAKE="`pwd`/automake --amdir=."
8
9 AC_PATH_PROG(PERL, perl)
10 if test -z "$PERL"; then
11    AC_MSG_ERROR([perl not found])
12 fi
13 $PERL -e 'require 5.005;' || {
14    AC_MSG_ERROR([perl 5.005 or better is required])
15 }
16
17 AC_OUTPUT([Makefile
18            lib/Makefile
19            lib/Automake/Makefile
20            m4/Makefile
21            tests/Makefile
22
23            automake aclocal],
24           [chmod +x automake aclocal])