From 779e4d2003e388342f8db26a5543bf3037c34901 Mon Sep 17 00:00:00 2001 From: Nick Hadaway Date: Thu, 15 Aug 2002 22:24:50 +0000 Subject: Added support for CDB (Constant Database) lookups. Faster than linear lookups in many cases. --- net-mail/exim/ChangeLog | 8 +++++++- net-mail/exim/exim-4.04-r1.ebuild | 6 ++++-- 2 files changed, 11 insertions(+), 3 deletions(-) (limited to 'net-mail/exim') diff --git a/net-mail/exim/ChangeLog b/net-mail/exim/ChangeLog index 7d6c6ecae007..cc069ee47830 100644 --- a/net-mail/exim/ChangeLog +++ b/net-mail/exim/ChangeLog @@ -1,9 +1,15 @@ # ChangeLog for net-mail/exim # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/ChangeLog,v 1.5 2002/08/15 20:04:41 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/ChangeLog,v 1.6 2002/08/15 22:24:50 raker Exp $ *exim-4.04-r1 (15 Aug 2002) + 15 Aug 2002; Nick Hadaway exim-4.04-r1.ebuild : + Added LOOKUP_CDB to compile options. This will add support for + Constant Database lookups which are in many cases faster than + linear lookups. All CDB code is included in exim. To learn more + about CDB check out http://cr.yp.to/cdb.html. + 15 Aug 2002; Nick Hadaway exim-4.04-r1.ebuild : Updated ebuild to add LOOKUP_DSEARCH support. This allows more functionality to exim with virual hosts. diff --git a/net-mail/exim/exim-4.04-r1.ebuild b/net-mail/exim/exim-4.04-r1.ebuild index c5abf4271157..d99f31919db2 100644 --- a/net-mail/exim/exim-4.04-r1.ebuild +++ b/net-mail/exim/exim-4.04-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Updated to exim-4 by Ben Lutgens -# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/exim-4.04-r1.ebuild,v 1.6 2002/08/15 20:04:41 raker Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/exim/exim-4.04-r1.ebuild,v 1.7 2002/08/15 22:24:50 raker Exp $ S=${WORKDIR}/${P} DESCRIPTION="A highly configurable, drop-in replacement for sendmail" @@ -93,9 +93,11 @@ src_unpack() { cat Makefile | sed -e 's/^buildname=.*/buildname=exim-gentoo/g' > Makefile.gentoo && mv -f Makefile.gentoo Makefile - # uncomment LOOKUP_DSEARCH cp Local/Makefile Local/Makefile.tmp sed -e "s:# LOOKUP_DSEARCH=yes:LOOKUP_DSEARCH=yes:" Local/Makefile.tmp >| Local/Makefile + + cp Local/Makefile Local/Makefile.tmp + sed -e "s:# LOOKUP_CDB=yes:LOOKUP_CDB=yes:" Local/Makefile.tmp >| Local/Makefile } src_compile() { -- cgit v1.2.3-65-gdbad