]> git.llucax.com Git - software/mutt-debian.git/commitdiff
debian/rules: adding a commented rule to enable tokyocabinet if we want
authorAntonio Radici <antonio@dyne.org>
Sat, 6 Feb 2010 17:59:44 +0000 (17:59 +0000)
committerAntonio Radici <antonio@dyne.org>
Sat, 6 Feb 2010 17:59:44 +0000 (17:59 +0000)
debian/changelog
debian/rules

index 835fef31bee168a65af988c1760d1de3ef95f211..b18f42e18147a7f5860bfafa2e8a47bb2a14d108 100644 (file)
@@ -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 <antonio@dyne.org>  Fri, 29 Jan 2010 23:32:55 +0000
 
index 1b5641f63e6aa76d5f3214ace21c16a0fe81def6..fe8e0b17a1b75d96d59e87781a33ac924c4e6596 100755 (executable)
@@ -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               \