diff options
author | reed <reed@pkgsrc.org> | 2004-06-04 00:10:34 +0000 |
---|---|---|
committer | reed <reed@pkgsrc.org> | 2004-06-04 00:10:34 +0000 |
commit | 4fe3c82f1414b59d4e93f3caf1d99867e7c3a70f (patch) | |
tree | 4753e8ddf3191ce7949559444067dccbeb2653ba /mail/exim-exiscan | |
parent | 07161a5d24f35a44d5db74cd1b02ab9390cacaa7 (diff) | |
download | pkgsrc-4fe3c82f1414b59d4e93f3caf1d99867e7c3a70f.tar.gz |
Add support for a variable called EXIM_DB. By default, it will
use native (since it is the first BDB_ACCEPTED choice). So under
NetBSD this does not change anything.
It can be set to "gdbm" if desiring gdbm as the DB method used.
Else it will use the mk/bdb.buildlink3.mk method.
For example, to choose a specific Berkeley DB implementation
(like DB hash version 7), then do: "make BDB_DEFAULT=db3"
(when EXIM_DB is unset or not set to "gdbm").
Please note that if you change the method, exim may complain
about DB problems. This is okay. You can delete the db files
and regenerate. (exim provides some db management tools too.)
This fixes the problem where exim will not build when
the system's db is not available or correct.
This will close my old PR pkg/19277.
This was discussed with maintainer, David Brownlee.
Diffstat (limited to 'mail/exim-exiscan')
-rw-r--r-- | mail/exim-exiscan/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/exim-exiscan/Makefile b/mail/exim-exiscan/Makefile index 954327aa04d..bebf52b5951 100644 --- a/mail/exim-exiscan/Makefile +++ b/mail/exim-exiscan/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.9 2004/05/07 17:47:32 abs Exp $ +# $NetBSD: Makefile,v 1.10 2004/06/04 00:10:34 reed Exp $ DISTNAME= exim-${EXIM_VERSION} -PKGREVISION= 1 +PKGREVISION= 2 PKGNAME= exim-exiscan-${EXIM_VERSION}_${EXISCAN_VERSION} CATEGORIES= mail net |