From: Antonio Radici Date: Sat, 6 Feb 2010 17:59:44 +0000 (+0000) Subject: debian/rules: adding a commented rule to enable tokyocabinet if we want X-Git-Tag: 1.5.20-7~8 X-Git-Url: https://git.llucax.com/software/mutt-debian.git/commitdiff_plain/fd321571e3f5b77d8e2b68aad013da1cc75c72f3?hp=1cdc53760841ece06cd857239dde00bf6bc60f54 debian/rules: adding a commented rule to enable tokyocabinet if we want --- diff --git a/debian/changelog b/debian/changelog index 835fef3..b18f42e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,7 @@ mutt (1.5.20-7) unstable; urgency=low * debian/control: + bumping Standards-Version to 3.8.4, nothing to be done + adding ${misc:Depends} to make lintian happy + * debian/rules: adding a commented rule to enable tokyocabinet if we want -- Antonio Radici Fri, 29 Jan 2010 23:32:55 +0000 diff --git a/debian/rules b/debian/rules index 1b5641f..fe8e0b1 100755 --- a/debian/rules +++ b/debian/rules @@ -12,6 +12,7 @@ BUILD_PATCHED := yes # HCACHE_DB := bdb HCACHE_DB := gdbm # HCACHE_DB := qdbm +# HCACHE_DB := tokyocabinet ### # GPGME backend GPGME := --enable-gpgme @@ -34,6 +35,9 @@ endif ifeq ($(HCACHE_DB),qdbm) hcache_db := --without-gdbm --without-bdb --without-tokyocabinet endif +ifeq ($(HCACHE_DB),tokyocabinet) + hcache_db := --without-gdbm --without-bdb --without-qdbm +endif confflags = --prefix=/usr \ --sysconfdir=/etc \