guile/configure.in

16 lines
379 B
Text
Raw Normal View History

2000-08-22 15:54:19 +00:00
AC_INIT(src/guile-vm.c)
2001-04-15 15:02:41 +00:00
AM_INIT_AUTOMAKE(guile-vm, 0.5)
2000-08-22 15:54:19 +00:00
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
2001-04-16 03:43:48 +00:00
AC_OUTPUT(Makefile src/Makefile doc/Makefile module/Makefile)