wisp
 
(Arne Babenhauserheide)
2014-07-15: explicitly look for Guile 2.0.x

explicitly look for Guile 2.0.x

diff --git a/configure.ac b/configure.ac
--- a/configure.ac
+++ b/configure.ac
@@ -6,9 +6,9 @@ AC_INIT([wisp], [0.6.0],
 # Check for programs I need for my build
 AC_CANONICAL_TARGET
 AC_ARG_VAR([guile], [How to call GNU Guile.])
-AC_CHECK_TARGET_TOOL([guile], [guile], [no])
+AC_CHECK_TARGET_TOOL([guile], [guile-2.0], [no])
 AS_IF([test "x$guile" = "xno"],
-      [AC_MSG_ERROR([cannot find GNU Guile.])])
+      [AC_MSG_ERROR([cannot find GNU Guile 2.0 or later.])])
 AC_ARG_VAR([python3], [How to call Python 3.])
 AC_CHECK_TARGET_TOOL([python3], [python3], [no])
 AS_IF([test "x$python3" = "xno"],