diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-08-28 23:21:38 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-08-28 23:21:38 +0200 |
commit | 0c57ea2ee68fe9930304351797f2091199fafdbb (patch) | |
tree | 9476b8d07fc29aa430c92b73b491161032e496d1 /configure.ac | |
parent | 49e627f99c6b25582a5d2ba4f7db1b66278c9b78 (diff) |
Goodbye mu, hello guile-debbugs!
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index a63c8d1..330b5f1 100644 --- a/configure.ac +++ b/configure.ac @@ -11,6 +11,15 @@ if test "x$GUILD" = "x"; then AC_MSG_ERROR(['guild' binary not found; please check your guile-2.2 installation.]) fi +GUILE_MODULE_AVAILABLE([have_guile_debbugs], [(debbugs soap)]) +if test "x$have_guile_debbugs" != "xyes"; then + AC_MSG_ERROR([Guile-Debbugs is missing; please install it.]) +fi + +GUILE_MODULE_AVAILABLE([have_mailutils], [(mailutils mailutils)]) +if test "x$have_mailutils" != "xyes"; then + AC_MSG_ERROR([Guile bindings to mailutils are missing; please install them.]) +fi guilemoduledir="${datarootdir}/guile/site/${GUILE_EFFECTIVE_VERSION}" AC_SUBST([guilemoduledir]) |