1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00
guile/configure.in
2000-08-22 15:54:19 +00:00

15 lines
389 B
Text

AC_INIT(src/guile-vm.c)
AM_INIT_AUTOMAKE(guile-vm, 0.2)
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 vm/Makefile doc/Makefile test/Makefile)