diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-04-05 14:02:49 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-04-05 14:02:49 +0200 |
commit | 56806eab392e9fc8d04bdf29a1b4001d56b577ea (patch) | |
tree | 46ce9daedb8f04e35a42b08bf98e2da7031394d7 | |
parent | 306b524d6c0605e37f8b0161569594351a0d969a (diff) |
Depend on mailutils.
-rw-r--r-- | configure.ac | 5 | ||||
-rw-r--r-- | guix.scm | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8ab28ea..2152ca9 100644 --- a/configure.ac +++ b/configure.ac @@ -31,6 +31,11 @@ if test "x$have_guile_sqlite3" != "xyes"; then AC_MSG_ERROR([Guile-Sqlite3 is missing; please install it.]) fi +GUILE_MODULE_AVAILABLE([have_mailutils], [(mailutils mailutils)]) +if test "x$have_mailutils" != "xyes"; then + AC_MSG_ERROR([Mailutils 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.]) @@ -46,7 +46,8 @@ ("guile-sqlite3" ,guile-sqlite3) ("guile-syntax-highlight" ,guile-syntax-highlight) ("guile" ,guile-2.2) - ("mumimu" ,(@@ (gnu packages mail) mumimu)))) + ("mumimu" ,(@@ (gnu packages mail) mumimu)) + ("mailutils" ,mailutils))) (native-inputs `(("autoconf" ,autoconf) ("automake" ,automake) |