From 5373877f989689209616109b13fd471b2d093b5f Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 15 Feb 2016 19:56:41 -0500 Subject: build: Allow building with Guile 2.2. * Makefile.am (moddir, goddir): Remove hardcoded "2.0". * configure.ac: Check to 2.2 as well. --- Makefile.am | 4 ++-- configure.ac | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 4d49aba..6f65ddc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -37,8 +37,8 @@ SUFFIXES = .scm .go .scm.go: $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<" -moddir=$(prefix)/share/guile/site/2.0 -godir=$(libdir)/guile/2.0/ccache +moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION) +godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/ccache bin_SCRIPTS = \ scripts/haunt diff --git a/configure.ac b/configure.ac index 5741840..a37eb95 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,8 @@ AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env]) AC_CONFIG_FILES([test-env], [chmod +x test-env]) AC_CONFIG_FILES([scripts/haunt], [chmod +x scripts/haunt]) -GUILE_PROGS([2.0.11]) +GUILE_PKG([2.2 2.0]) +GUILE_PROGS dnl Guile-reader is needed for Skribe support GUILE_MODULE_AVAILABLE([have_guile_reader], [(system reader)]) -- cgit v1.2.3