-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure.ac
More file actions
30 lines (23 loc) · 817 Bytes
/
configure.ac
File metadata and controls
30 lines (23 loc) · 817 Bytes
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
AC_INIT([Tcl2CL], [0.1])
AC_CONFIG_SRCDIR([source])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign])
# Checks for a Lisp program.
AC_SUBST(LISP_PROGRAM)
AC_ARG_WITH(lisp, [ --with-lisp=IMPL use the specified lisp], LISP_PROGRAM=$withval, LISP_PROGRAM="sbcl")
AC_CHECK_PROG(LISP_CHECK,$LISP_PROGRAM,yes,no)
if test "$LISP_CHECK" = "no"; then
AC_MSG_ERROR([*** No lisp is available.])
fi
AC_MSG_NOTICE([Using $LISP at $LISP_PROGRAM])
# Check for makeinfo
AC_CHECK_PROG(MAKEINFO,makeinfo,yes,no)
if test "$MAKEINFO" = "no"; then
AC_MSG_WARN([You do not seem to have makeinfo, so you will not be able
to build the manuals. Please install makeinfo for the manual.])
elif test "$MAKEINFO" = "yes"; then
MAKEINFO=makeinfo
fi
AC_SUBST([MAKEINFO])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT