diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 21:01:45 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2001-06-10 21:01:45 +0800 |
commit | 87a2289ace788f1c04d14699833a7c7bb74532e0 (patch) | |
tree | 9ba94cf068731bf206de08a8ca15eebc1d93c6e1 /mail/exim-old | |
parent | 1e0bcc4aeac3d5f56f4b1990c6f61a430f77f482 (diff) | |
download | freebsd-ports-gnome-87a2289ace788f1c04d14699833a7c7bb74532e0.tar.gz freebsd-ports-gnome-87a2289ace788f1c04d14699833a7c7bb74532e0.tar.zst freebsd-ports-gnome-87a2289ace788f1c04d14699833a7c7bb74532e0.zip |
Enable maildir, mailstore and mbx support by default so that they're
included in the package. Folks who don't want them can build Exim
as follows:
cd /path/to/ports/mail/exim
make WITH_MAILDIR=no WITH_MAILSTORE=no WITH_MBX=no
Diffstat (limited to 'mail/exim-old')
-rw-r--r-- | mail/exim-old/Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index c634107e6923..ba8e023f0803 100644 --- a/mail/exim-old/Makefile +++ b/mail/exim-old/Makefile @@ -50,10 +50,11 @@ PAM_PLAINTEXT= yes # NETSCAPE or SOLARIS7. LDAP_LIB_TYPE=UMICHIGAN -# Uncomment to compile support for non-standard mailbox formats. -#WITH_MAILDIR= yes -#WITH_MAILSTORE= yes -#WITH_MBX= yes +# The following options control whether Exim is built with support for +# additional mailbox formats. +WITH_MAILDIR?= yes +WITH_MAILSTORE?= yes +WITH_MBX?= yes # You should not need to fiddle with anything below this point. @@ -123,15 +124,15 @@ SEDLIST+= -e 's,^LOOKUP_LIBS,\#LOOKUP_LIBS,' \ -e 's,^LOOKUP_INCLUDE,\#LOOKUP_INCLUDE,' .endif -.if defined(WITH_MAILDIR) +.if defined(WITH_MAILDIR) && ${WITH_MAILDIR} == "yes" SEDLIST+= -e 's,^\# SUPPORT_MAILDIR,SUPPORT_MAILDIR,' .endif -.if defined(WITH_MAILSTORE) +.if defined(WITH_MAILSTORE) && ${WITH_MAILSTORE} == "yes" SEDLIST+= -e 's,^\# SUPPORT_MAILSTORE,SUPPORT_MAILSTORE,' .endif -.if defined(WITH_MBX) +.if defined(WITH_MAILMBX) && ${WITH_MAILMBX} == "yes" SEDLIST+= -e 's,^\# SUPPORT_MBX,SUPPORT_MBX,' .endif |