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 /configure.ac | |
| 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
Diffstat (limited to 'configure.ac')
| -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 | |||
| 198 | AC_MSG_ERROR([Guile-lzlib is missing; please install it.]) | 198 | AC_MSG_ERROR([Guile-lzlib is missing; please install it.]) |
| 199 | fi | 199 | fi |
| 200 | 200 | ||
| 201 | dnl Check for Guile-zstd. | ||
| 202 | GUILE_MODULE_AVAILABLE([have_guile_zstd], [(zstd)]) | ||
| 203 | if test "x$have_guile_zstd" != "xyes"; then | ||
| 204 | AC_MSG_ERROR([Guile-zstd is missing; please install it.]) | ||
| 205 | fi | ||
| 206 | |||
| 207 | dnl Check for Guile-semver. | ||
| 208 | GUILE_MODULE_AVAILABLE([have_guile_semver], [(semver)]) | ||
| 209 | if test "x$have_guile_semver" != "xyes"; then | ||
| 210 | AC_MSG_ERROR([Guile-semver is missing; please install it.]) | ||
| 211 | fi | ||
| 212 | |||
| 201 | dnl Check for Guile-Avahi. | 213 | dnl Check for Guile-Avahi. |
| 202 | GUILE_MODULE_AVAILABLE([have_guile_avahi], [(avahi)]) | 214 | GUILE_MODULE_AVAILABLE([have_guile_avahi], [(avahi)]) |
| 203 | AM_CONDITIONAL([HAVE_GUILE_AVAHI], | 215 | AM_CONDITIONAL([HAVE_GUILE_AVAHI], |
