This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch version-1.5.0
in repository guix.
The following commit(s) were added to refs/heads/version-1.5.0 by this push:
new d73d526b0a maint: Check for guile-semver ang guile-zstd.
d73d526b0a is described below
commit d73d526b0a5c58015827fa1f998d5448990fea5d
Author: Rutherther <[email protected]>
AuthorDate: Wed Jan 21 15:20:37 2026 +0100
maint: Check for guile-semver ang guile-zstd.
These were omitted from the configure script, leading to failure during the
build, instead of an earlier failure during ./configure.
Change-Id: I62a69eccf854acc1f7ae9a7aeb26897cf433478c
---
configure.ac | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/configure.ac b/configure.ac
index 6ad8e42773..583842c707 100644
--- a/configure.ac
+++ b/configure.ac
@@ -198,6 +198,18 @@ if test "x$have_guile_lzlib" != "xyes"; then
AC_MSG_ERROR([Guile-lzlib is missing; please install it.])
fi
+dnl Check for Guile-zstd.
+GUILE_MODULE_AVAILABLE([have_guile_zstd], [(zstd)])
+if test "x$have_guile_zstd" != "xyes"; then
+ AC_MSG_ERROR([Guile-zstd 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-Avahi.
GUILE_MODULE_AVAILABLE([have_guile_avahi], [(avahi)])
AM_CONDITIONAL([HAVE_GUILE_AVAHI],