From 19ba0a82d2008873add50d8adb7075fa2dd20dec Mon Sep 17 00:00:00 2001 From: Dale Mellor Date: Thu, 7 Jul 2022 12:05:56 +0100 Subject: Lose hope of running against guile 2.2 or earlier. We have previously allowed versions 2.0 and 2.2 to get past the configure stage, but all versions of guile before 3.0 have in fact failed to compile the code due to syntax errors for some time now. * build-aux/guix.scm: package depends on guile@3 * configure.ac: only look for guile version 3 * src/mcron/base.scm: drop allowance for old-fashioned (version 2.0) select --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 0f7cfda..451777d 100644 --- a/configure.ac +++ b/configure.ac @@ -43,7 +43,7 @@ m4_pattern_allow([^GUILE_PKG]) m4_pattern_allow([^GUILE_PROGS]) # Check for latest Guile development files. -GUILE_PKG([3.0 2.2 2.0]) +GUILE_PKG([3.0]) # Checks for programs. GUILE_PROGS -- cgit v1.2.3