Support more C++ file extensions for MSVC in the compile script.
[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
26 AM_INIT_AUTOMAKE([configure], [1.0])
27 AC_CONFIG_FILES([Makefile])
28 AC_OUTPUT
29 EOF
30
31 cat >configure.in <<EOF
32 AC_INIT([configure], [1.0])
33 AM_INIT_AUTOMAKE([an-invalid-automake-option])
34 AC_CONFIG_FILES([Makefile])
35 AC_OUTPUT
36 EOF
37
38 cat >configure.in <<EOF
39 AC_INIT([configure], [1.0])
40 AM_INIT_AUTOMAKE([an-invalid-automake-option])
41 AC_CONFIG_FILES([Makefile])
42 AC_OUTPUT
43 EOF
44
45 : >Makefile.am
46
47 $ACLOCAL 2>stderr && { cat stderr >&2; Exit 1; }
48 cat stderr >&2
49 grep 'configure.ac.*configure.in.*both present' stderr
50
51 $ACLOCAL -Wno-error 2>stderr || { cat stderr >&2; Exit 1; }
52 cat stderr >&2
53 grep 'configure.ac.*configure.in.*both present' stderr
54 grep 'proceeding.*configure.ac' stderr
55
56 # Ensure we really proceed with configure.ac.
57 AUTOMAKE_fails -Werror
58 grep 'configure.ac.*configure.in.*both present' stderr
59 grep 'proceeding.*configure.ac' stderr
60
61 AUTOMAKE_run 0 -Wno-error
62 grep 'configure.ac.*configure.in.*both present' stderr
63 grep 'proceeding.*configure.ac' stderr
64
65 :