From 974a27b32a9bc8ce1e17f2099a4b2e39b27dddf4 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 1 Nov 2007 12:13:00 -0700 Subject: [PATCH] Detect BDB automatically if --with-bdb is empty --- ChangeLog | 35 ++++++++++------------------------- configure.ac | 8 ++++++-- 2 files changed, 16 insertions(+), 27 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1d9cd292..16e82ee6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,52 +1,37 @@ -2007-11-01 13:43 +0100 Rocco Rutte (a9e37e90ad40) +2007-11-01 14:33 +0100 Rocco Rutte (80f1331abec2) - * doc/manual.xml.head: Manual: s/SMTP support/SMTP Support/ (for - consitency) + * doc/devel-notes.txt: devel-notes.txt: Mention where hg repo is, how + to clone and update -2007-11-01 13:01 +0100 Rocco Rutte (13f21ce1d474) + * doc/TODO: Documentation: Add doc/TODO with some items still open - * ChangeLog, doc/manual.xml.head: Manual: Remove 404 link for - fetchmail, mention getmail, too + * doc/manual.xml.head: Manual: s/SMTP support/SMTP Support/ (for + consitency) -2007-11-01 12:56 +0100 Rocco Rutte (69ba99747f3e) + * doc/manual.xml.head: Manual: Remove 404 link for fetchmail, + mention getmail, too * doc/manual.xml.head: Manual: Add short section on SSL/TLS support (needs more details) -2007-11-01 12:44 +0100 Rocco Rutte (06f5fc3c3492) - * doc/manual.xml.head: Manual: Document URL syntax in just one place, let others refer to it. -2007-11-01 12:15 +0100 Rocco Rutte (abd26d96d280) - * doc/manual.xml.head: Manual: Document optional SMTP support -2007-11-01 11:56 +0100 Rocco Rutte (89a91b102590) - * doc/manual.xml.head: Manual: Add some general notes about optional features. Mention 'configure --help' and 'mutt -v' output. -2007-11-01 11:45 +0100 Rocco Rutte (926ce441df68) - * doc/Makefile.am, doc/manual.xml.head: Manual: Move POP3, IMAP and cache-related sections to their own chapter. -2007-11-01 11:04 +0100 Rocco Rutte (ec6f7d81af91) - * doc/manual.xml.head: Manual: Add ids to all tables and use for reference. -2007-11-01 09:46 +0100 Rocco Rutte (b72e56281016) - - * .hgignore: Add more autoconf support files to .hgignore - 2007-10-31 16:34 -0700 Brendan Cully (7cebeacc3b83) - * ChangeLog, config.guess, config.sub, depcomp, install-sh, missing: - Remove autotools support files which autoreconf -i can generate - -2007-10-31 16:24 -0700 Brendan Cully (e20b768d37f0) + * config.guess, config.sub, depcomp, install-sh, missing: Remove + autotools support files which autoreconf -i can generate * Makefile.am, cvslog2changelog.pl: cvslog2changelog.pl is obsolete diff --git a/configure.ac b/configure.ac index 71326859..d6bcfa9a 100644 --- a/configure.ac +++ b/configure.ac @@ -892,8 +892,12 @@ then dnl -- BDB -- ac_bdb_prefix="$with_bdb" - if test x$ac_bdb_prefix != xno && test x$ac_cv_gdbmopen != xyes && test $use_qdbm != yes; then - test x$ac_bdb_prefix = xyes && ac_bdb_prefix="$mutt_cv_prefix /opt/csw/bdb4 /opt /usr/local /usr" + if test x$ac_bdb_prefix != xno && test x$ac_cv_gdbmopen != xyes && test $use_qdbm != yes + then + if test x$ac_bdb_prefix = xyes || test x$ac_bdb_prefix = x + then + ac_bdb_prefix="$mutt_cv_prefix /opt/csw/bdb4 /opt /usr/local /usr" + fi for d in $ac_bdb_prefix; do bdbpfx="$bdbpfx $d" for v in BerkeleyDB.4.3 BerkeleyDB.4.2 BerkeleyDB.4.1; do -- 2.50.0