+2007-09-17 09:47 +0200 Rocco Rutte <pdmef@gmx.net> (e146db07dd54)
+
+ * init.c: Use NONULL to ensure we can pretty-print empty paths for
+ option queries
+
+2007-09-14 11:35 -0700 Emanuele <Emanuele Giaquinta> (c699e5847630)
+
+ * ChangeLog, configure.ac: The new MD5 code needs AC_C_BIGENDIAN on
+ big-endian systems
+
2007-09-13 09:39 -0700 Brendan Cully <brendan@kublai.com> (154417d57b9d)
* configure.ac: Do not clobber --with-bdb argument (closes #2955)
return NULL;
}
}
+
+#if HAVE_DB4
+const char *mutt_hcache_backend (void)
+{
+ return DB_VERSION_STRING;
+}
+#elif HAVE_GDBM
+const char *mutt_hcache_backend (void)
+{
+ return gdbm_version;
+}
+#elif HAVE_QDBM
+const char *mutt_hcache_backend (void)
+{
+ return "qdbm " _QDBM_VERSION;
+}
+#endif
size_t dlen, size_t(*keylen) (const char* fn));
int mutt_hcache_delete(header_cache_t *h, const char *filename, size_t (*keylen)(const char *fn));
+const char *mutt_hcache_backend (void);
+
#endif /* _HCACHE_H_ */
#include "imap/imap.h"
#endif
+#ifdef USE_HCACHE
+#include "hcache.h"
+#endif
+
#include <string.h>
#include <stdlib.h>
#include <locale.h>
printf ("\nlibidn: %s (compiled with %s)", stringprep_check_version (NULL),
STRINGPREP_VERSION);
#endif
-
+
+#ifdef USE_HCACHE
+ printf ("\nhcache backend: %s", mutt_hcache_backend ());
+#endif
+
puts (_("\nCompile options:"));
#ifdef DOMAIN