diff options
| author | Rutherther <rutherther@ditigal.xyz> | 2026-01-21 15:20:37 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-21 15:23:59 +0100 |
| commit | e642300195dfc7c83283db7e103fabf2c6ac65a7 (patch) | |
| tree | 904d550464087b13cb979f1dc6abb00d9911da8c | |
| parent | 4470dd7386d991f27d55048223a71d583eb144f3 (diff) | |
maint: Check for guile-semver and 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
| -rw-r--r-- | configure.ac | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6ad8e427736..583842c7072 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], |
