summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2020-04-05 14:04:22 +0200
committerRicardo Wurmus <rekado@elephly.net>2020-04-05 14:05:25 +0200
commitdcb33b50435c4aae226e9f5cb8dc6b00c6c74905 (patch)
tree407103ac3981f795e3241e426ae5d64241c3df17 /configure.ac
parent56806eab392e9fc8d04bdf29a1b4001d56b577ea (diff)
Depend on Guile Gcrypt.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2152ca9..e515de1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -36,6 +36,11 @@ if test "x$have_mailutils" != "xyes"; then
AC_MSG_ERROR([Mailutils is missing; please install it.])
fi
+GUILE_MODULE_AVAILABLE([have_gcrypt], [(gcrypt base64)])
+if test "x$have_gcrypt" != "xyes"; then
+ AC_MSG_ERROR([Guile Gcrypt is missing; please install it.])
+fi
+
dnl GUILE_MODULE_AVAILABLE([have_fibers], [(fibers web server)])
dnl if test "x$have_fibers" != "xyes"; then
dnl AC_MSG_ERROR([Guile fibers is missing; please install it.])