diff options
author | ng0 <contact.ng0@cryptolab.net> | 2017-02-14 19:21:28 +0000 |
---|---|---|
committer | Kei Kebreau <kei@openmailbox.org> | 2017-03-02 13:56:54 -0500 |
commit | ef91e2b964ec0952698dd1bf7daf76624fed2145 (patch) | |
tree | 74859bbf45b03f7c343ab0b945aba9e11447c707 /gnu | |
parent | bdc11dc4c0d326205f811a10b29a0385db9e4721 (diff) | |
download | patches-ef91e2b964ec0952698dd1bf7daf76624fed2145.tar patches-ef91e2b964ec0952698dd1bf7daf76624fed2145.tar.gz |
gnu: neomutt: Configure with 'lmdb' and 'tokyocabinet'.
* gnu/packages/mail.scm (neomutt)[configure]: Add '--with-tokyocabinet' and
'--with-lmdb'.
[inputs]: Add 'lmdb' and 'tokyocabinet'.
Signed-off-by: Kei Kebreau <kei@openmailbox.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 90ebbb99bd..ee82a1b8bb 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -267,6 +267,8 @@ operating systems.") (inputs `(("cyrus-sasl" ,cyrus-sasl) ("gdbm" ,gdbm) + ("lmdb" ,lmdb) + ("tokyocabinet" ,tokyocabinet) ("gpgme" ,gpgme) ("ncurses" ,ncurses) ("gnutls" ,gnutls) @@ -289,10 +291,11 @@ operating systems.") "--enable-gpgme" ;; database, implies header caching - "--without-tokyocabinet" + ;; neomutt supports building multiple backends + "--with-tokyocabinet" "--without-qdbm" "--without-bdb" - "--without-lmdb" + "--with-lmdb" "--with-gdbm" "--with-gnutls" |