diff options
author | ghen <ghen> | 2008-06-03 10:30:51 +0000 |
---|---|---|
committer | ghen <ghen> | 2008-06-03 10:30:51 +0000 |
commit | abef05a3cbc887cd0610f197338d09218fa2fea2 (patch) | |
tree | 77a1d777d59bdd0c0494bdff082b7909bc50892d /mail/postfix-current | |
parent | e3b1284e8822a62995f9ed22871cdf82ac39a0d2 (diff) | |
download | pkgsrc-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-current')
-rw-r--r-- | mail/postfix-current/options.mk | 13 |
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 |