mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 12:05:19 -06:00
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
This commit is contained in:
parent
4470dd7386
commit
e642300195
1 changed files with 12 additions and 0 deletions
12
configure.ac
12
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],
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue