2 # Copyright (C) 2004 Free Software Foundation, Inc.
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)
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.
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/>.
17 # Make sure aclocal scans configure.in for macro definitions.
24 # Start macros with AM_ because that causes aclocal to complain if it
27 cat >> configure.
in << 'END'
28 m4_include
([somedef.
m4])
29 AC_DEFUN
([AM_SOME_MACRO
])
30 AC_DEFUN
([AM_SOME_OTHER_MACRO
])
37 echo 'AC_DEFUN([AM_SOME_MACRO])' > m
4/some.
m4
38 echo 'AC_DEFUN([AM_SOME_DEF])' > somedef.
m4
39 echo 'AC_DEFUN([AM_MORE_MACRO], [AC_REQUIRE([AM_SOME_DEF])])' > m
4/more.
m4
42 $FGREP AM_SOME_MACRO aclocal.
m4 && Exit
1
43 $FGREP AM_MORE_MACRO aclocal.
m4 && Exit
1
44 $FGREP 'm4_include([m4/more.m4])' aclocal.
m4
45 test 1 = `grep m4_include aclocal.m4 | wc -l`