2 # Copyright (C) 1999-2012 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 # Test to make sure nostdinc option works correctly.
19 # We don't require a C compiler explicitly, because the first part of the
20 # test (where 'Makefile.in' is grepped) does not require one. Insted, we
21 # just skip the rest of the test if configure fails to find a working C
26 cat >> configure.ac
<< 'END'
31 cat > Makefile.am
<< 'END'
32 AUTOMAKE_OPTIONS
= nostdinc
40 $EGREP '(-I *\.|-I.*srcdir|am__isrc)' Makefile.
in && exit 1
42 # We'll test the fully-processed Makefile too.
45 # Test with $builddir != $srcdir
48 ..
/configure ||
exit $?
49 $EGREP '.*-I *(\.|\$.srcdir.)' Makefile
&& exit 1
51 # Test with $builddir = $srcdir
53 .
/configure ||
exit $?
54 $EGREP '.*-I *(\.|\$.srcdir.)' Makefile
&& exit 1