summaryrefslogtreecommitdiff
path: root/mail/postfix
diff options
context:
space:
mode:
authorghen <ghen>2008-06-03 10:30:51 +0000
committerghen <ghen>2008-06-03 10:30:51 +0000
commitabef05a3cbc887cd0610f197338d09218fa2fea2 (patch)
tree77a1d777d59bdd0c0494bdff082b7909bc50892d /mail/postfix
parente3b1284e8822a62995f9ed22871cdf82ac39a0d2 (diff)
downloadpkgsrc-abef05a3cbc887cd0610f197338d09218fa2fea2.tar.gz
Add optional support for the "cdb" mapfile (constant database). This format
is read-only but is faster than Berkeley DB and uses less memory. Use the TinyCDB implementation which is in the public domain and a bit faster than DJB's original CDB.
Diffstat (limited to 'mail/postfix')
-rw-r--r--mail/postfix/options.mk13
1 files changed, 12 insertions, 1 deletions
diff --git a/mail/postfix/options.mk b/mail/postfix/options.mk
index 367f82c080e..80feddd2fcb 100644
--- a/mail/postfix/options.mk
+++ b/mail/postfix/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.31 2008/04/12 22:43:04 jlam Exp $
+# $NetBSD: options.mk,v 1.32 2008/06/03 10:30:51 ghen Exp $
# Global and legacy options
@@ -105,3 +105,14 @@ CONF_FILES+= ${EXAMPLEDIR}/smtpd.conf ${SASLLIBDIR}/smtpd.conf
.else
CCARGS+= -DDEF_SERVER_SASL_TYPE=\"dovecot\"
.endif
+
+###
+### Support CDB (Constant Database) map type.
+###
+.if !empty(PKG_OPTIONS:Mcdb)
+. include "../../databases/tinycdb/buildlink3.mk"
+CCARGS+= -DHAS_CDB
+AUXLIBS+= -L${BUILDLINK_PREFIX.tinycdb}/lib \
+ ${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.tinycdb}/lib \
+ -lcdb
+.endif