pkgsrc/mail/spamprobe/options.mk
hubertf bb0410fd2a Update spamprobe to 1.2a.
SpamProbe changes:
 - New email parsing implementation
 - New hash database, in addition to Berkeley DB (bdb/db4)
   (=> Hopefully no more "caught runtime exception: get: DB_PAGE_NOTFOUND:
       Requested page not found" on Linux every other day!)
 - And much more, check the ChangeLog for accurate information

pkgsrc changes:
 - Added db4 database backend to be optional (not requirement anymore)

Patches sent by the maintainer Ossi Herrala <oherrala@ee.oulu.fi>
in private mail.
2005-06-29 00:06:51 +00:00

14 lines
367 B
Makefile

# $NetBSD: options.mk,v 1.1 2005/06/29 00:06:58 hubertf Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.spamprobe
PKG_SUPPORTED_OPTIONS= bdb
PKG_SUGGESTED_OPTIONS= bdb
.include "../../mk/bsd.options.mk"
.if !empty(PKG_OPTIONS:Mbdb)
BDB_ACCEPTED= db4 # db3 db2 (not tested)
.include "../../mk/bdb.buildlink3.mk"
CONFIGURE_ARGS+= --with-db=${BDBBASE}
.endif