From 20c45abd408320050d53624c6529d7b7efc89618 Mon Sep 17 00:00:00 2001 From: ghen Date: Tue, 3 Jun 2008 10:30:51 +0000 Subject: 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. --- mail/postfix/options.mk | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'mail/postfix') 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 -- cgit v1.2.3