1 | #! /bin/sh |
---|
2 | # $Id: yat_cxx_add_flag_test.sh 2384 2010-12-22 14:03:36Z peter $ |
---|
3 | # |
---|
4 | # Copyright (C) 2009, 2010 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_CXX_ADD_FLAG adds the passed flag and but not if FLAFS |
---|
23 | # is already present |
---|
24 | |
---|
25 | required="autoconf automake g++" |
---|
26 | |
---|
27 | set -e |
---|
28 | |
---|
29 | . ./common_defs.sh || exit 1 |
---|
30 | |
---|
31 | cat >> configure.ac <<EOF |
---|
32 | YAT_CXX_ADD_FLAG([YAT_CXXFLAGS__], [-DSOMETHING]) |
---|
33 | YAT_CXX_ADD_FLAG([YAT_CXXFLAGS__], [-DSOMETHING]) |
---|
34 | AC_SUBST(YAT_CXXFLAGS__) |
---|
35 | AC_CONFIG_FILES([Makefile]) |
---|
36 | AC_OUTPUT |
---|
37 | EOF |
---|
38 | |
---|
39 | bootstrap |
---|
40 | ./configure CXX=g++ |
---|
41 | |
---|
42 | grep 'YAT_CXXFLAGS__' Makefile |
---|
43 | |
---|
44 | if test `grep 'YAT_CXXFLAGS__.*SOMETHING' Makefile | wc -l` = 1; then |
---|
45 | echo "found SOMETHING" |
---|
46 | else |
---|
47 | echo "ERROR: found no SOMETHING" |
---|
48 | exit 1 |
---|
49 | fi |
---|
50 | |
---|
51 | if test `grep 'YAT_CXXFLAGS__.*SOMETHING.*SOMETHING' Makefile | wc -l` = 0; then |
---|
52 | : |
---|
53 | else |
---|
54 | echo "ERROR: double SOMETHING" |
---|
55 | exit 1 |
---|
56 | fi |
---|
57 | |
---|
58 | echo "Test is OK" |
---|