X-Original-To: alpine-devel@lists.alpinelinux.org Delivered-To: alpine-devel@mail.alpinelinux.org Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id E373DDC04C6 for ; Thu, 27 Jun 2013 06:12:34 +0000 (UTC) Received: from compute3.internal (compute3.nyi.mail.srv.osa [10.202.2.43]) by gateway1.nyi.mail.srv.osa (Postfix) with ESMTP id 895C620F12 for ; Thu, 27 Jun 2013 02:12:33 -0400 (EDT) Received: from frontend2.nyi.mail.srv.osa ([10.202.2.161]) by compute3.internal (MEProxy); Thu, 27 Jun 2013 02:12:34 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id; s= smtpout; bh=pqWdeG3hsOYE93XI8C8KhVRRd38=; b=cRdQPxtbMO20/K8MYc5r EEtxFkhFff5zf927maDywdC+/pdIv4vK2W9JZA4b/z0OrZPF4Fv+Odq15cMb5IP8 CZ6mgtOrFT5VfzG7/Pt4470EyfNtiYc0TIF0h0LhAzjEn3l5nYNqtrALAcezaYOi ran59HOKr6PyBBjtozcnkCI= X-Sasl-enc: Y1u63YhHJ46dq+WOrAtWgepMKuOgysXZmjCxJMzJhW0G 1372313552 Received: from localhost (unknown [69.86.161.244]) by mail.messagingengine.com (Postfix) with ESMTPA id F2EB9680478 for ; Thu, 27 Jun 2013 02:12:32 -0400 (EDT) From: Dubiousjim To: alpine-devel@lists.alpinelinux.org Subject: [alpine-devel] [PATCH] main/mutt: depend on gdbm-dev instead of db-dev Date: Thu, 27 Jun 2013 02:12:32 -0400 Message-Id: <83efd2ef450463320beb6461cbf100e1439c178f.1372313552.git.dubiousjim@gmail.com> X-Mailer: git-send-email 1.8.3.1 X-Mailinglist: alpine-devel Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: The --enable-hcache config options demands some DB headers/lib be present; currently we specify db in the APKBUILD, however this version of mutt only seems to recognize db v4, and we're currently at v5.3. Let's specify gdbm instead, which mutt also accepts. --- main/mutt/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/mutt/APKBUILD b/main/mutt/APKBUILD index 1c6bc7d..9efe8a7 100644 --- a/main/mutt/APKBUILD +++ b/main/mutt/APKBUILD @@ -8,7 +8,7 @@ url="http://www.mutt.org" arch="all" license="GPL" depends= -makedepends="cyrus-sasl-dev db-dev gettext-dev gpgme-dev libiconv-dev +makedepends="cyrus-sasl-dev gdbm-dev gettext-dev gpgme-dev libiconv-dev libidn-dev ncurses-dev openssl-dev perl" install= subpackages="$pkgname-doc $pkgname-lang" -- 1.8.3.1 --- Unsubscribe: alpine-devel+unsubscribe@lists.alpinelinux.org Help: alpine-devel+help@lists.alpinelinux.org ---