Merge branch 'msvc' into maint
[platform/upstream/automake.git] / tests / acloca13.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2005  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 changes to m4_included files also cause aclocal.m4 to change.
18
19 . ./defs || Exit 1
20
21 set -e
22
23 cat >> configure.in << 'END'
24 m4_include([somefile.m4])
25 AC_OUTPUT
26 END
27
28 cat >Makefile.am <<'EOF'
29 check-local:
30         test -f "$(srcdir)/somefile.m4"
31         test -f "$(srcdir)/m4/version1.m4"
32         test -f "$(srcdir)/m4/otherfile.m4"
33 EOF
34
35 mkdir m4
36
37 echo MACRO1 >somefile.m4
38 echo 'AC_PREREQ([2.58])' >m4/otherfile.m4
39
40 cat >m4/version1.m4 <<EOF
41 AC_DEFUN([MACRO1])
42 AC_DEFUN([MACRO2])
43 m4_sinclude(m4/otherfile.m4)
44 EOF
45
46 cat >m4/version2.m4 <<EOF
47 AC_DEFUN([MACRO1])
48 EOF
49
50 $ACLOCAL -I m4
51 grep version2 aclocal.m4
52 grep version1 aclocal.m4 && Exit 1
53
54 $sleep
55 echo MACRO2 >somefile.m4
56
57 $ACLOCAL -I m4
58 grep version2 aclocal.m4 && Exit 1
59 grep version1 aclocal.m4
60
61 $sleep
62 # aclocal.m4 should change if we touch otherfile.m4
63 touch m4/otherfile.m4
64 $sleep
65 $ACLOCAL -I m4
66 test `ls -1t aclocal.m4 m4/otherfile.m4 | sed 1q` = aclocal.m4
67
68 $AUTOCONF
69 $AUTOMAKE
70 ./configure
71 $MAKE distcheck