X-Git-Url: https://git.llucax.com/software/mutt-debian.git/blobdiff_plain/76a54b65b4d405cea98a5d5b18d2030b4ed9b556..ce48ac0f18ae018709253b0f14500c9e3cd1754c:/debian/rules diff --git a/debian/rules b/debian/rules index fdc4d99..fe8e0b1 100755 --- a/debian/rules +++ b/debian/rules @@ -12,9 +12,10 @@ BUILD_PATCHED := yes # HCACHE_DB := bdb HCACHE_DB := gdbm # HCACHE_DB := qdbm +# HCACHE_DB := tokyocabinet ### # GPGME backend -# GPGME := --enable-gpgme +GPGME := --enable-gpgme ### ###################### variables ###################### @@ -26,13 +27,16 @@ endif # Configure arguments ifeq ($(HCACHE_DB),bdb) - hcache_db := --without-gdbm --without-qdbm + hcache_db := --without-gdbm --without-qdbm --without-tokyocabinet endif ifeq ($(HCACHE_DB),gdbm) - hcache_db := --without-qdbm --without-bdb + hcache_db := --without-qdbm --without-bdb --without-tokyocabinet endif ifeq ($(HCACHE_DB),qdbm) - hcache_db := --without-gdbm --without-bdb + 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 \