Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / configure.test
1 #! /bin/sh
2 # Copyright (C) 2010 Free Software Foundation, Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
7 # any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # Diagnose if both configure.in and configure.ac are present, prefer
18 # configure.ac.
19
20 . ./defs || Exit 1
21
22 set -e
23
24 cat >configure.ac <<EOF
25 AC_INIT([$me], [1.0])
26 AM_INIT_AUTOMAKE
27 AC_CONFIG_FILES([Makefile])
28 EOF
29
30 cat >configure.in <<EOF
31 AC_INIT([$me], [1.0])
32 AM_INIT_AUTOMAKE([an-invalid-automake-option])
33 AC_CONFIG_FILES([Makefile])
34 EOF
35
36 : >Makefile.am
37
38 $ACLOCAL 2>stderr && { cat stderr >&2; Exit 1; }
39 cat stderr >&2
40 grep 'configure\.ac.*configure\.in.*both present' stderr
41
42 $ACLOCAL -Wno-error 2>stderr || { cat stderr >&2; Exit 1; }
43 cat stderr >&2
44 grep 'configure\.ac.*configure\.in.*both present' stderr
45 grep 'proceeding.*configure\.ac' stderr
46
47 # Ensure we really proceed with configure.ac.
48 AUTOMAKE_fails -Werror
49 grep 'configure\.ac.*configure\.in.*both present' stderr
50 grep 'proceeding.*configure\.ac' stderr
51
52 AUTOMAKE_run 0 -Wno-error
53 grep 'configure\.ac.*configure\.in.*both present' stderr
54 grep 'proceeding.*configure\.ac' stderr
55
56 :