diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-11 09:40:24 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-06-11 09:40:24 +0000 |
commit | 278f54e00aff610ac3bbea595ee7830f572a3fba (patch) | |
tree | 91f9bfdd294bf298c0a7a23be4954ba98a6fd1e4 /mail/exim | |
parent | 9b09d3621d99b59741dc59346c8f5f7cd658751b (diff) | |
download | ports-278f54e00aff610ac3bbea595ee7830f572a3fba.tar.gz ports-278f54e00aff610ac3bbea595ee7830f572a3fba.zip |
Notes
Diffstat (limited to 'mail/exim')
-rw-r--r-- | mail/exim/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/mail/exim/Makefile b/mail/exim/Makefile index 968fcc3ee190..e74bffa631a6 100644 --- a/mail/exim/Makefile +++ b/mail/exim/Makefile @@ -7,7 +7,7 @@ PORTNAME= exim PORTVERSION= 3.22 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= mail MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ \ http://www.exim.org/ftp/ \ @@ -60,6 +60,9 @@ LDAP_LIB_TYPE=UMICHIGAN #WITHOUT_MAILDIR= yes #WITHOUT_MAILSTORE= yes #WITHOUT_MBX= yes +# +# Disable support for CDB-style lookups. +#WITHOUT_CDB= yes # You should not need to fiddle with anything below this point. @@ -139,14 +142,18 @@ SEDLIST+= -e 's,^LOOKUP_LIBS,\#LOOKUP_LIBS,' \ SEDLIST+= -e 's,^\# SUPPORT_MAILDIR=,SUPPORT_MAILDIR=,' .endif -.if !defined(WITH_MAILSTORE) +.if !defined(WITHOUT_MAILSTORE) SEDLIST+= -e 's,^\# SUPPORT_MAILSTORE=,SUPPORT_MAILSTORE=,' .endif -.if !defined(WITH_MAILMBX) +.if !defined(WITHOUT_MBX) SEDLIST+= -e 's,^\# SUPPORT_MBX=,SUPPORT_MBX=,' .endif +.if !defined(WITHOUT_CDB) +SEDLIST+= -e 's,^\# LOOKUP_CDB=,LOOKUP_CDB=,' +.endif + do-configure: ${MKDIR} ${WRKSRC}/Local ${SED} ${SEDLIST} < ${WRKSRC}/src/EDITME > ${WRKSRC}/Local/Makefile |