summaryrefslogtreecommitdiff
path: root/mail/mutt-devel/options.mk
diff options
context:
space:
mode:
authortonio <tonio>2005-08-02 12:57:02 +0000
committertonio <tonio>2005-08-02 12:57:02 +0000
commiteee8a76b43da6c6f0e5f3bca3154c0770ba3b17d (patch)
treee7d3b2f5d398c2dca916066af56cac3b8fbc3b7d /mail/mutt-devel/options.mk
parente28d4cd17a6936c65799f18ac627a768d01ea5db (diff)
downloadpkgsrc-eee8a76b43da6c6f0e5f3bca3154c0770ba3b17d.tar.gz
* update to 1.5.9 (see PR 30102 and PR 30841 by Brian de Alwis)
Main changelog entries are a function "rename-mailbox", better imap handling (do not lose flags when uploading to an imap mailbox), and integration of header cache patch. Added option "hcache" to enable header cache (adds a dependancy to db4) Approved by wiz@
Diffstat (limited to 'mail/mutt-devel/options.mk')
-rw-r--r--mail/mutt-devel/options.mk15
1 files changed, 13 insertions, 2 deletions
diff --git a/mail/mutt-devel/options.mk b/mail/mutt-devel/options.mk
index a227ca6bbdc..489faf0cc1f 100644
--- a/mail/mutt-devel/options.mk
+++ b/mail/mutt-devel/options.mk
@@ -1,9 +1,9 @@
-# $NetBSD: options.mk,v 1.5 2005/05/31 10:01:38 dillo Exp $
+# $NetBSD: options.mk,v 1.6 2005/08/02 12:57:02 tonio Exp $
# Global and legacy options
PKG_OPTIONS_VAR= PKG_OPTIONS.mutt
-PKG_SUPPORTED_OPTIONS= slang ncurses ssl sasl
+PKG_SUPPORTED_OPTIONS= slang ncurses ssl sasl hcache
PKG_SUGGESTED_OPTIONS= ssl
.include "../../mk/bsd.options.mk"
@@ -39,3 +39,14 @@ CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
.else
CONFIGURE_ARGS+= --without-ssl
.endif
+
+###
+### Header cache
+###
+.if !empty(PKG_OPTIONS:Mhcache)
+BDB_ACCEPTED= db4
+. include "../../mk/bdb.buildlink3.mk"
+CONFIGURE_ARGS+= --enable-hcache
+.else
+CONFIGURE_ARGS+= --disable-hcache
+.endif