]> granicus.if.org Git - neomutt/commitdiff
Fix BDB autoconf buglet introduced in [3638701db407]
authorJukka Salmi <jukka@salmi.ch>
Sat, 7 Apr 2007 23:05:15 +0000 (16:05 -0700)
committerJukka Salmi <jukka@salmi.ch>
Sat, 7 Apr 2007 23:05:15 +0000 (16:05 -0700)
ChangeLog
configure.ac

index 99f3b6cd384ca25a8929dc324f5a38421c308700..fa99e92f1223e6d3739313e6acc7fca1c1173886 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,23 @@
-2007-04-07 13:10 -0700  Brendan Cully  <brendan@kublai.com>  (ab937d1f12b8)
+2007-04-07 15:21 -0700  Michael Elkins  <me@mutt.org>  (70e637e40943)
+
+       * enter.c: add "|" to the list of shell chars
+
+       * enter.c: "complete" function should consider shell chars to be word
+       boundaries when doing filename completion (bug #2871)
+
+       * complete.c, lib.c, lib.h: bug #2871
+
+       Avoid altering the argument to mutt_complete() when completion
+       fails. Previously, the trailing component of filename was removed
+       each time the user pressed TAB.
+
+2007-04-07 14:32 -0700  Fabian Groffen  <grobian@orakel.ods.org>  (eed43900f612)
+
+       * copy.c: Fix some compiler warnings
+
+2007-04-07 13:40 -0700  Brendan Cully  <brendan@kublai.com>  (980949218b09)
+
+       * regex.c: Fix compiler warnings
 
        * smtp.c: Mark error message for translation
 
index ab47802e3856d30bf978b3380926fdb5aa78616d..8b8415ace97a4e88fc7e1d84cc0a3b74e51507d7 100644 (file)
@@ -894,7 +894,7 @@ AC_ARG_ENABLE(hcache, AC_HELP_STRING([--enable-hcache], [Enable header caching])
                 if test -r "$d/include/$v/db.h"; then
                     BDB_INCLUDE_DIR="$d/include/$v"
                     for bdblibdir in "$d/lib/$v" "$d/lib"; do
-                    if test -d "$bdblibdir"; then
+                        test -d "$bdblibdir" || continue
                         BDB_LIB_DIR="$bdblibdir"
                         for l in `echo $BDB_VERSIONS`; do
                             CPPFLAGS="$OLDCPPFLAGS -I$BDB_INCLUDE_DIR"
@@ -911,8 +911,7 @@ AC_ARG_ENABLE(hcache, AC_HELP_STRING([--enable-hcache], [Enable header caching])
                                 break
                             ])
                         done
-                        test x$ac_cv_dbcreate = xyes && break
-                    fi
+                        test x$ac_cv_dbcreate = xyes && break 2
                     done
                 fi
             done