1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-11 08:10:21 +02:00
guile/configure.in
Keisuke Nishida 17e90c5e25 New VM.
2001-04-01 05:03:41 +00:00

15 lines
379 B
Text

AC_INIT(src/guile-vm.c)
AM_INIT_AUTOMAKE(guile-vm, 0.3)
AM_CONFIG_HEADER(src/config.h)
GUILE_FLAGS
if test "`guile -c '(display (string>=? (version) "1.4.1"))'`" != "#t"; then
AC_MSG_ERROR([Your Guile is too old. You need guile-1.4.1 or later.])
fi
AC_PROG_CC
AC_PROG_LN_S
AM_PROG_LIBTOOL
AC_C_LABELS_AS_VALUES
AC_OUTPUT(Makefile src/Makefile doc/Makefile module/Makefile)