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