diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-08-15 22:24:50 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-08-15 22:24:50 +0000 |
commit | 779e4d2003e388342f8db26a5543bf3037c34901 (patch) | |
tree | 5d96613afed6880b9cb0ae21093de365b9cbba7a /net-mail/exim | |
parent | terminate the sed command (diff) | |
download | gentoo-2-779e4d2003e388342f8db26a5543bf3037c34901.tar.gz gentoo-2-779e4d2003e388342f8db26a5543bf3037c34901.tar.bz2 gentoo-2-779e4d2003e388342f8db26a5543bf3037c34901.zip |
Added support for CDB (Constant Database) lookups. Faster than linear
lookups in many cases.
Diffstat (limited to 'net-mail/exim')
-rw-r--r-- | net-mail/exim/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/exim/exim-4.04-r1.ebuild | 6 |
2 files changed, 11 insertions, 3 deletions
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,10 +1,16 @@ # 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 <raker@gentoo.org> 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 <raker@gentoo.org> 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 <lamer@gentoo.org> -# $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() { |