1 | ## Process this file with autoconf to produce a configure script. |
---|
2 | ## |
---|
3 | ## $Id: configure.ac 4089 2021-09-07 00:56:40Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2011, 2014, 2021 Peter Johansson |
---|
6 | # |
---|
7 | # This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
8 | # |
---|
9 | # The yat library is free software; you can redistribute it |
---|
10 | # and/or modify it under the terms of the GNU General Public License as |
---|
11 | # published by the Free Software Foundation; either version 3 of the |
---|
12 | # License, or (at your option) any later version. |
---|
13 | # |
---|
14 | # The yat library is distributed in the hope that it will be useful, |
---|
15 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
17 | # General Public License for more details. |
---|
18 | # |
---|
19 | # You should have received a copy of the GNU General Public License |
---|
20 | # along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
21 | # |
---|
22 | |
---|
23 | AC_INIT([yat-hello],[1.0]) |
---|
24 | AC_CONFIG_SRCDIR([hello.cc]) |
---|
25 | AC_CONFIG_AUX_DIR([build-aux]) |
---|
26 | AC_CONFIG_HEADERS([config.h]) |
---|
27 | AM_INIT_AUTOMAKE([foreign]) |
---|
28 | AC_CONFIG_MACRO_DIR([m4]) |
---|
29 | AC_LANG([C++]) |
---|
30 | AC_PROG_CXXCPP |
---|
31 | AC_PROG_CXX |
---|
32 | LT_INIT |
---|
33 | YAT_CHECK_YAT([0.4],[],[AC_MSG_ERROR([could not find required version of yat])]) |
---|
34 | AC_CONFIG_FILES([Makefile]) |
---|
35 | AC_OUTPUT |
---|