-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
61 lines (48 loc) · 1.62 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
dnl Copyright (C) 2016 Marc Nieper-Wißkirchen
dnl This file is part of Rapid Scheme.
dnl This program is free software: you can redistribute it and/or
dnl modify it under the terms of the GNU General Public License as
dnl published by the Free Software Foundation, either version 3 of the
dnl License, or (at your option) any later version.
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
dnl General Public License for more details.
dnl You should have received a copy of the GNU General Public License
dnl along with this program. If not, see
dnl <http://www.gnu.org/licenses/>.
AC_PREREQ([2.69])
AC_INIT([Rapid Scheme], [0.2.0], [[email protected]], [],
[https://www.rapid-scheme.org])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.14.1])
AC_USE_SYSTEM_EXTENSIONS
gl_PROG_AR_RANLIB
AM_PROG_AR
LT_PREREQ([2.4.2])
LT_INIT([dlopen])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_SRCDIR([src/runtime/rapid-scheme.scm])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
lib/Makefile
src/compiler/Makefile
src/runtime/Makefile
doc/Makefile
tests/Makefile
tests/runtime/Makefile
])
# Checks for programs.
AC_PROG_CC
gl_EARLY
AC_PROG_CC_STDC
gl_INIT
# FIXME: Write a macro that locates a suitable Scheme implementation.
AC_SUBST([SCHEME], ['$(abs_top_builddir)/src/compiler/scheme'])
# Checks for libraries.
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_OUTPUT