]> granicus.if.org Git - mutt/commitdiff
Fix logic in [13a831a945be].
authorEmanuele Giaquinta <e.giaquinta@glauco.it>
Sat, 18 Oct 2008 23:39:44 +0000 (01:39 +0200)
committerEmanuele Giaquinta <e.giaquinta@glauco.it>
Sat, 18 Oct 2008 23:39:44 +0000 (01:39 +0200)
configure.ac

index 0e11192476e8ea222ed1f717b5e8f3834d890b47..ac266d61ea88a8f8f6d747dd45f94f5319bf965d 100644 (file)
@@ -869,7 +869,8 @@ then
     fi
     
     dnl -- Tokyo Cabinet --
-    if test "$with_tokyocabinet" != "no"
+    if test "$with_tokyocabinet" != "no" \
+           && test "$db_requested" = auto -o "$db_requested" = tc
     then
       if test -n "$with_tokyocabinet" && test "$with_tokyocabinet" != "yes"
       then
@@ -891,7 +892,8 @@ then
     fi
 
     dnl -- QDBM --
-    if test "$with_qdbm" != "no" && test $db_found = no
+    if test "$with_qdbm" != "no" && test $db_found = no \
+           && test "$db_requested" = auto -o "$db_requested" = qdbm
     then
       if test -n "$with_qdbm" && test "$with_qdbm" != "yes"
       then
@@ -923,7 +925,8 @@ then
     fi
 
     dnl -- GDBM --
-    if test x$with_gdbm != xno && test $db_found = no
+    if test x$with_gdbm != xno && test $db_found = no \
+           && test "$db_requested" = auto -o "$db_requested" = gdbm
     then
         if test "$with_gdbm" != "yes"
         then