2 # Process this file with autoconf to produce a configure script.
5 AC_INIT([guile-r6rs], [0.0], [ludovic.courtes@laas.fr])
6 AC_CONFIG_AUX_DIR(build-aux)
7 AC_CONFIG_MACRO_DIR(m4)
9 AM_INIT_AUTOMAKE(guile-r6rs, 0.0)
14 AC_CONFIG_SRCDIR([src/bytevector.c])
15 AC_CONFIG_HEADER([src/config.h])
17 # Checks for programs.
25 AC_PATH_PROG([guile_snarf], [guile-snarf], [not-found])
26 if test "x$guile_snarf" = "xnot-found"; then
27 AC_MSG_ERROR([`guile-snarf' not found. Please install Guile 1.8.x or later.])
31 # Checks for header files.
33 AC_CHECK_HEADERS([string.h limits.h])
34 AC_CHECK_HEADER([gmp.h], [:],
35 AC_MSG_ERROR([GMP headers not found. Please install it first.]))
37 # Checks for typedefs, structures, and compiler characteristics.
41 AC_CHECK_SIZEOF([void *])
43 # Checks for library functions.
49 AC_CONFIG_FILES([Makefile
55 AC_CONFIG_COMMANDS([pre-inst-guile-exec], [chmod +x pre-inst-guile])