tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / nodef.sh
1 #! /bin/sh
2 # Copyright (C) 2002-2013 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 # Make sure that PACKAGE and VERSION are AC_DEFINEd when requested.
18
19 . test-init.sh
20
21 # -------------------------------------------------------------------
22 # Do not upgrade this file to use the modern AC_INIT/AM_INIT_AUTOMAKE
23 # forms.  The day these obsolete AC_INIT and AM_INIT_AUTOMAKE forms
24 # are dropped, just erase the file.
25 # nodef2.test contains the modern version of this test.
26 # -------------------------------------------------------------------
27
28 # First, check that PACKAGE and VERSION are output by default.
29
30 cat > configure.ac << 'END'
31 AC_INIT
32 AM_INIT_AUTOMAKE([UnIqUe_PaCkAgE], [UnIqUe_VeRsIoN])
33 AC_OUTPUT(output)
34 END
35
36 echo 'DEFS = @DEFS@' > output.in
37
38 $ACLOCAL
39 $AUTOCONF
40 ./configure
41
42 grep 'DEFS.*-DVERSION=\\"UnIqUe' output
43
44 # Then, check that PACKAGE and VERSION are not output if requested.
45
46 cat > configure.ac << 'END'
47 AC_INIT
48 AM_INIT_AUTOMAKE([UnIqUe_PaCkAgE], [UnIqUe_VeRsIoN], [no])
49 AC_OUTPUT(output)
50 END
51
52 $ACLOCAL
53 $AUTOCONF
54 ./configure
55
56 grep 'DEFS.*-DVERSION=\\"UnIqUe' output && exit 1
57
58 :