1 | #! /bin/sh |
---|
2 | # $Id: yat_m4_test.sh 2527 2011-07-26 02:15:29Z peter $ |
---|
3 | # |
---|
4 | # Copyright (C) 2009, 2010, 2011 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 | # build a `hello world' project that uses macro YAT_CHECK_YAT in its |
---|
23 | # configure.ac. Test if the macro works against an uninstalled yat. |
---|
24 | |
---|
25 | required="autoconf automake libtool" |
---|
26 | |
---|
27 | set -e |
---|
28 | |
---|
29 | . ./common_defs.sh || exit 99 |
---|
30 | |
---|
31 | cat >> configure.ac <<EOF |
---|
32 | AC_LANG([C++]) |
---|
33 | AC_PROG_CXXCPP |
---|
34 | AC_PROG_CXX |
---|
35 | YAT_FIND_YAT |
---|
36 | CXX=\`\$yat_config --cxx\` |
---|
37 | YAT_CHECK_VERSION([0.5.99],, |
---|
38 | [AC_MSG_ERROR([could not find required version of yat])]) |
---|
39 | YAT_CHECK_HEADER(,[AC_MSG_ERROR([could not find yat headers])]) |
---|
40 | YAT_LDADD=\`\$yat_config --link-libtool\` |
---|
41 | AC_SUBST(YAT_LDADD) |
---|
42 | AC_CONFIG_FILES([Makefile]) |
---|
43 | AC_OUTPUT |
---|
44 | EOF |
---|
45 | |
---|
46 | bootstrap |
---|
47 | ./configure --with-yat=$abs_top_builddir/build_support/yat-config |
---|
48 | |
---|
49 | make |
---|
50 | ./hello || exit_fail |
---|
51 | |
---|