Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / version7.test
1 #! /bin/sh
2 # Copyright (C) 2002, 2008  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 # Test for a special setup where the package's version isn't defined
18 # in configure.in.  We want GNU Make for this test (part of the test
19 # is to make sure Makefile.ins get rebuilt when a m4_included file
20 # changes -- we don't support this feature on non-GNU Makes).
21
22 required='makeinfo tex texi2dvi GNUmake'
23 . ./defs || Exit 1
24
25 set -e
26
27 cat >configure.in <<'END'
28 m4_include([version.m4])
29 AC_INIT([version7], [THE_VERSION])
30 AM_INIT_AUTOMAKE
31 AC_CONFIG_FILES([Makefile])
32 AC_OUTPUT
33 END
34
35 echo 'm4_define([THE_VERSION], [2.718])' > version.m4
36
37 cat > Makefile.am << 'END'
38 info_TEXINFOS = zardoz.texi
39
40 check:
41         test -f $(srcdir)/version.m4
42 END
43
44 cat > zardoz.texi << 'END'
45 \input texinfo
46 @setfilename zardoz.info
47 @settitle Zardoz
48 @node Top
49 Hello walls.
50 @include version.texi
51 @bye
52 END
53
54 $ACLOCAL
55 $AUTOCONF
56 $AUTOMAKE --add-missing
57 ./configure --version | grep '2\.718'
58 ./configure
59 $MAKE
60 grep '2\.718' version.texi
61
62
63 $sleep
64 echo 'm4_define([THE_VERSION], [3.141])' > version.m4
65 $MAKE distcheck
66 ./configure --version | grep '3\.141'
67 grep '3\.141' version.texi