From: Jukka Salmi Date: Sat, 7 Apr 2007 23:05:15 +0000 (-0700) Subject: Fix BDB autoconf buglet introduced in [3638701db407] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a3b5025f80e9ecad5ce0b2c5f27c892b147b61d;p=neomutt Fix BDB autoconf buglet introduced in [3638701db407] --- diff --git a/ChangeLog b/ChangeLog index 99f3b6cd3..fa99e92f1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,23 @@ -2007-04-07 13:10 -0700 Brendan Cully (ab937d1f12b8) +2007-04-07 15:21 -0700 Michael Elkins (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 (eed43900f612) + + * copy.c: Fix some compiler warnings + +2007-04-07 13:40 -0700 Brendan Cully (980949218b09) + + * regex.c: Fix compiler warnings * smtp.c: Mark error message for translation diff --git a/configure.ac b/configure.ac index ab47802e3..8b8415ace 100644 --- a/configure.ac +++ b/configure.ac @@ -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