-2007-04-04 11:47 -0700 Brendan Cully <brendan@kublai.com> (5e0ea671962d)
+2007-04-05 12:55 -0700 Brendan Cully <brendan@kublai.com> (4f435337507e)
+
+ * Makefile.am, hcache.c, hcachever.sh: Version header cache against
+ MD5 of structures on which it depends
+
+ * UPDATING, globals.h, imap/browse.c, imap/imap_private.h, init.h:
+ Remove broken namespace support
+
+2007-04-04 16:31 -0700 Brendan Cully <brendan@kublai.com> (e96bd1f85634)
* imap/command.c: Only reset UIDNEXT if new mail has been detected.
This prevents mutt from suddenly finding new mail when switching
for v in / $BDB_VERSIONS; do
if test -r "$d/include/$v/db.h"; then
BDB_INCLUDE_DIR="$d/include/$v"
- if test -d "$d/lib/$v"; then
- BDB_LIB_DIR="$d/lib/$v"
+ for bdblibdir in "$d/lib/$v" "$d/lib"; do
+ if test -d "$bdblibdir"; then
+ BDB_LIB_DIR="$bdblibdir"
for l in `echo $BDB_VERSIONS`; do
CPPFLAGS="$OLDCPPFLAGS -I$BDB_INCLUDE_DIR"
LIBS="$OLDLIBS -L$BDB_LIB_DIR -l$l"
done
test x$ac_cv_dbcreate = xyes && break
fi
+ done
fi
done
test x$BDB_LIB != x && break