From mboxrd@z Thu Jan 1 00:00:00 1970 From: contact.ng0@cryptolab.net Subject: [PATCH 2/2] gnu: neomutt: Configure with 'lmdb' and 'tokyocabinet'. Date: Sat, 11 Feb 2017 21:07:41 +0000 Message-ID: <20170211210741.8863-3-contact.ng0@cryptolab.net> References: <20170211210741.8863-1-contact.ng0@cryptolab.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59813) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cceru-0007Uh-Ol for guix-devel@gnu.org; Sat, 11 Feb 2017 16:06:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ccerr-0001tg-JE for guix-devel@gnu.org; Sat, 11 Feb 2017 16:06:06 -0500 Received: from aibo.runbox.com ([91.220.196.211]:49452) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ccerr-0001tJ-CL for guix-devel@gnu.org; Sat, 11 Feb 2017 16:06:03 -0500 In-Reply-To: <20170211210741.8863-1-contact.ng0@cryptolab.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org From: ng0 * gnu/packages/mail.scm (neomutt)[configure]: Add '--with-tokyocabinet' and '--with-lmdb'. [inputs]: Add 'lmdb' and 'tokyocabinet'. --- gnu/packages/mail.scm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index a9b2cb3ec..9311fbf14 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" -- 2.11.1