Revert "update upstream sources"
[clinton/guile-figl.git] / configure.ac
1 dnl -*- Autoconf -*-
2
3 AC_INIT(guile-figl, 0.1.0)
4 AC_COPYRIGHT([
5
6 figl
7 Copyright (C) 2013 Andy Wingo <wingo@pobox.com>
8
9 Figl is free software: you can redistribute it and/or modify it under
10 the terms of the GNU Lesser General Public License as published by the
11 Free Software Foundation, either version 3 of the License, or (at your
12 option) any later version.
13
14 Figl is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17 License for more details.
18
19 You should have received a copy of the GNU Lesser General Public
20 License along with this program. If not, see
21 <http://www.gnu.org/licenses/>.
22
23 ])
24
25 AC_CONFIG_SRCDIR(figl.scm)
26 AC_CONFIG_AUX_DIR([build-aux])
27 AM_INIT_AUTOMAKE([color-tests -Wall -Wno-portability foreign])
28 AM_SILENT_RULES([yes])
29
30 GUILE_PROGS
31
32 if $GUILE_TOOLS | grep -q compile; then
33 # everything cool
34 true
35 else
36 AC_MSG_ERROR([Guile 2.0 required.])
37 fi
38
39 AC_CONFIG_FILES([Makefile figl/config.scm])
40 AC_CONFIG_FILES([env], [chmod +x env])
41
42 AC_OUTPUT