Changeset 2050b44407bf and qdbm
- To: Mutt-Devel <mutt-dev@xxxxxxxx>
- Subject: Changeset 2050b44407bf and qdbm
- From: Kyle Wheeler <kyle-mutt-dev@xxxxxxxxxxxxxx>
- Date: Mon, 29 Sep 2008 17:47:51 -0500
- Comment: DomainKeys? See http://domainkeys.sourceforge.net/
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed; d=memoryhole.net; h=date :from:to:subject:message-id:mime-version:content-type; s=default ; bh=NC6sBZoK7gCU6sWEnV1Ctgw5EFg=; b=HWI3MXuI3cRxqvIaV3kQaocz6i+ ZvNXewDjL6h2QA5kFJeq6Nz1eJBjItEGzDqdD9FAcOkx693jfC6kLQhalGoBW/6m UQYihvMiFP1vbXjXX3MShVTd9IJEzVX7yggsdfdUvrExetsKhHwRcxu8gCmH+n3m uqsFQwmd1J2IDT+0=
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=default; d=memoryhole.net; b=JHeQio8yWV3NEcSJnguDuBVhd2ZlG0BZATRX1J4UjRvLOVS4EzIXQKWUq720D6fnzDE18x8MNsoXXxcV0JFrplXAB2IA903p1lutWRILyc1MBorMUHbkAb6per2/OHmzDdus2Lq5so/f3Z1u3ynuPMzaCdwQ37xH+/IjQ8gNW/M=; h=Received:Received:Date:From:To:Subject:Message-ID:Mail-Followup-To:MIME-Version:Content-Type:Content-Disposition:OpenPGP:User-Agent;
- List-post: <mailto:mutt-dev@mutt.org>
- List-unsubscribe: send mail to majordomo@mutt.org, body only "unsubscribe mutt-dev"
- Mail-followup-to: Mutt-Devel <mutt-dev@xxxxxxxx>
- Openpgp: id=CA8E235E; url=http://www.memoryhole.net/~kyle/kyle-pgp.asc; preference=signencrypt
- Sender: owner-mutt-dev@xxxxxxxx
- User-agent: Mutt/1.5.18 (2008-08-31)
After changeset 2050b44407bf, I’m unable to compile with qdbm. I see
that configure.in is testing for $use_qdbm, but never sets it.
Equivalent logic is used in the tokyocabinet stuff, but I don’t see
how that could possibly work *either*, since $use_tokyocabinet is
never set.
A small patch is attached that corrects that and lets it build
properly.
~Kyle
--
I am always ready to learn although I do not always like to be taught.
-- Winston Churchill
diff -r 9e569296190b configure.ac
--- a/configure.ac Fri Sep 26 08:55:49 2008 +0200
+++ b/configure.ac Mon Sep 29 17:47:29 2008 -0500
@@ -851,7 +851,7 @@
db_found=yes],
[CPPFLAGS="$OLDCPPFLAGS"
LDFLAGS="$OLDLDFLAGS"]))
- if test -n "$with_tokyocabinet" && test "$use_tokyocabinet" != yes
+ if test -n "$with_tokyocabinet" && test "$db_found" != yes
then
AC_MSG_ERROR([Tokyo Cabinet could not be used. Check config.log for
details.])
fi
@@ -883,7 +883,7 @@
[CPPFLAGS="$OLDCPPFLAGS"
LDFLAGS="$OLDLDFLAGS"])
LIBS="$saved_LIBS"
- if test -n "$with_qdbm" && test "$use_qdbm" != yes
+ if test -n "$with_qdbm" && test "$db_found" != yes
then
AC_MSG_ERROR([QDBM could not be used. Check config.log for details.])
fi
Attachment:
pgpwcQuGo3eLo.pgp
Description: PGP signature