summaryrefslogtreecommitdiff
path: root/mail/postfix-current
diff options
context:
space:
mode:
authorghen <ghen>2008-06-03 10:30:51 +0000
committerghen <ghen>2008-06-03 10:30:51 +0000
commit227c372329091572911b23573aa8529df1cb1883 (patch)
tree77a1d777d59bdd0c0494bdff082b7909bc50892d /mail/postfix-current
parent617caf90fad97a75f56519afb5031310f5eb53e0 (diff)
downloadpkgsrc-227c372329091572911b23573aa8529df1cb1883.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-current')
-rw-r--r--mail/postfix-current/options.mk13
1 files changed, 12 insertions, 1 deletions
diff --git a/mail/postfix-current/options.mk b/mail/postfix-current/options.mk
index 33190db67d1..127bc8473dd 100644
--- a/mail/postfix-current/options.mk
+++ b/mail/postfix-current/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.22 2008/04/12 22:43:04 jlam Exp $
+# $NetBSD: options.mk,v 1.23 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