Add dependency on Guile-lzlib.

Guix no longer provides the (guix lzlib) module.  This commit arranges
to use Guile-lzlib instead.
This commit is contained in:
Ludovic Courtès 2020-08-26 11:27:54 +02:00
parent c7048abe31
commit 773fe2a19f
3 changed files with 7 additions and 1 deletions

View file

@ -31,6 +31,11 @@ if test "x$have_email" != "xyes"; then
AC_MSG_ERROR([Guile email is missing; please install it.])
fi
GUILE_MODULE_AVAILABLE([have_lzlib], [(lzlib)])
if test "x$have_lzlib" != "xyes"; then
AC_MSG_ERROR([Guile-Lzlib is missing; please install it.])
fi
guilemoduledir="${datarootdir}/guile/site/${GUILE_EFFECTIVE_VERSION}"
AC_SUBST([guilemoduledir])
AC_SUBST([GUILE_EFFECTIVE_VERSION])