summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2020-02-17 12:03:45 +0200
committerGuix Patches Tester <>2020-02-17 10:06:07 +0000
commit8d23e0ee0dafc0ed25ed39f19456773b966c2842 (patch)
treec0f522aa432746fe3b20e43797f4476a562bcecf /configure.ac
parentdb9979e7f9a8f94885ce593d78fe02de6dd71717 (diff)
downloadguix-patches-8d23e0ee0dafc0ed25ed39f19456773b966c2842.tar
guix-patches-8d23e0ee0dafc0ed25ed39f19456773b966c2842.tar.gz
Added Guile-Semver as a dependency to guix
The tree has moved a bit since you sent the patch, here's a copy I made that applies
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 06e86c209f..0896c23955 100644
--- a/configure.ac
+++ b/configure.ac
@@ -118,6 +118,12 @@ if test "x$have_guile_git" != "xyes"; then
AC_MSG_ERROR([Guile-Git is missing; please install it.])
fi
+dnl Check for Guile-Semver
+GUILE_MODULE_AVAILABLE([have_guile_semver], [(semver)])
+if test "x$have_guile_semver" != "xyes"; then
+ AC_MSG_ERROR([Guile-Semver is missing; please install it.])
+fi
+
dnl Check for Guile-JSON.
GUIX_CHECK_GUILE_JSON
if test "x$guix_cv_have_recent_guile_json" != "xyes"; then