1 | #! /bin/sh |
---|
2 | # $Id: yat_m4_test2.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 option --with-yat=no works as expected. |
---|
23 | |
---|
24 | required="autoconf automake" |
---|
25 | |
---|
26 | set -e |
---|
27 | |
---|
28 | . ./common_defs.sh || exit 1 |
---|
29 | |
---|
30 | cat >> configure.ac <<EOF |
---|
31 | YAT_FIND_YAT(,[AC_MSG_ERROR([yat_find_yat failed - see warning above])]) |
---|
32 | YAT_CHECK_VERSION([1.60.2], |
---|
33 | [AC_MSG_ERROR([yat_check_version failed - see warning above])]) |
---|
34 | YAT_CHECK_HEADER(,[AC_MSG_ERROR([yat_check_header failed - see warning above])]) |
---|
35 | YAT_CHECK_LIB(,[AC_MSG_ERROR([yat_check_lib failed - see warning above])]) |
---|
36 | YAT_CHECK_YAT([2.7.8],,AC_MSG_ERROR([yat_check_yat failed - see warning above])) |
---|
37 | AC_CONFIG_FILES([Makefile]) |
---|
38 | AC_OUTPUT |
---|
39 | EOF |
---|
40 | |
---|
41 | bootstrap |
---|
42 | ./configure --without-yat |
---|
43 | make Makefile |
---|
44 | |
---|
45 | echo "Test is OK" |
---|