1 | #! /bin/sh |
---|
2 | # $Id: yat_cpp_add_flag_test.sh 2085 2009-10-20 20:52:13Z peter $ |
---|
3 | # |
---|
4 | # Copyright (C) 2009 Peter Johansson |
---|
5 | # |
---|
6 | # This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
7 | # |
---|
8 | # The yat library is free software; you can redistribute it |
---|
9 | # and/or modify it under the terms of the GNU General Public License as |
---|
10 | # published by the Free Software Foundation; either version 3 of the |
---|
11 | # License, or (at your option) any later version. |
---|
12 | # |
---|
13 | # The yat library is distributed in the hope that it will be useful, |
---|
14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
16 | # General Public License for more details. |
---|
17 | # |
---|
18 | # You should have received a copy of the GNU General Public License |
---|
19 | # along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
20 | |
---|
21 | |
---|
22 | # test that YAT_CPP_ADD_FLAG adds the passed flag and ignores standard |
---|
23 | # includes like `-I/usr/include' and `-I/usr/local/include' |
---|
24 | |
---|
25 | required="autoconf automake g++ yat_add_flag.m4 ax_cxxcpp_check_flag.m4 ax_c_ifdef.m4" |
---|
26 | |
---|
27 | set -e |
---|
28 | |
---|
29 | . ./common_defs.sh || exit 1 |
---|
30 | |
---|
31 | echo "Creating acinclude.m4" |
---|
32 | cat > acinclude.m4.tmp <<EOF |
---|
33 | YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-I/usr/include]) |
---|
34 | YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-I/usr/local/include]) |
---|
35 | YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-DHAVE_SOMETHING]) |
---|
36 | YAT_CPP_ADD_FLAG([YAT_CPPFLAGS__], [-DHAVE_SOMETHING]) |
---|
37 | AC_SUBST(YAT_CPPFLAGS__) |
---|
38 | EOF |
---|
39 | $move_if_change -v acinclude.m4.tmp acinclude.m4 |
---|
40 | |
---|
41 | # bootstrapping |
---|
42 | if test -f Makefile; then |
---|
43 | : |
---|
44 | else |
---|
45 | autoreconf -siv |
---|
46 | ./configure CXX=g++ |
---|
47 | fi |
---|
48 | |
---|
49 | echo "$me: running make Makefile" |
---|
50 | make Makefile |
---|
51 | |
---|
52 | grep 'YAT_CPPFLAGS__' Makefile |
---|
53 | |
---|
54 | if test `grep 'YAT_CPPFLAGS__.*HAVE_SOMETHING' Makefile | wc -l` = 1; then |
---|
55 | echo "found HAVE_SOMETHING" |
---|
56 | else |
---|
57 | echo "ERROR: found no HAVE_SOMETHING" |
---|
58 | exit 1 |
---|
59 | fi |
---|
60 | |
---|
61 | if test `grep 'YAT_CPPFLAGS__.*SOMETHING.*SOMETHING' Makefile|wc -l`=0; |
---|
62 | then |
---|
63 | : |
---|
64 | else |
---|
65 | echo "ERROR: found double HAVE_SOMETHING" |
---|
66 | exit 1 |
---|
67 | fi |
---|
68 | |
---|
69 | if test `grep 'YAT_CPPFLAGS__.*usr/' Makefile | wc -l` = 0; then |
---|
70 | echo "found no usr/" |
---|
71 | else |
---|
72 | echo "ERROR: found usr/" |
---|
73 | exit 1 |
---|
74 | fi |
---|
75 | |
---|
76 | |
---|
77 | echo "Test is OK" |
---|