]> git.llucax.com Git - software/mutt-debian.git/commitdiff
disable tokyocabinet as backend so it won't be accidentally compiled
authorAntonio Radici <antonio@dyne.org>
Tue, 26 May 2009 22:44:15 +0000 (23:44 +0100)
committerAntonio Radici <antonio@dyne.org>
Tue, 26 May 2009 22:44:15 +0000 (23:44 +0100)
debian/changelog
debian/rules

index 7d7e33f59fbab895c29bb2be969e56703f756f38..a811352f5eb952c1d6d220fe88c7a62b420970fc 100644 (file)
@@ -1,3 +1,11 @@
+mutt (1.5.19-4) unstable; urgency=low
+
+  * debian/rules:
+    + disable tokyocabinet as backend so it won't be accidentally compiled
+      (Closes: 530670)
+
+ -- Antonio Radici <antonio@dyne.org>  Tue, 26 May 2009 23:42:51 +0100
+
 mutt (1.5.19-3) unstable; urgency=low
 
   * debian/control:
index fdc4d9983f88bc3edb8b63c6540d2d3df0e36fbe..ff10811f77d9a71976dce43de0b90b5e8674e883 100755 (executable)
@@ -26,13 +26,13 @@ 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
 
 confflags =    --prefix=/usr                   \