summaryrefslogtreecommitdiff
path: root/mail/exim-devel
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2001-06-10 13:01:45 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2001-06-10 13:01:45 +0000
commit229158aa8d61ff8db78eba95781dae04c98df23b (patch)
tree3963988f08ac31261cadd4c73a953a8cd2a6d9c3 /mail/exim-devel
parentUpdate to 0.5.9. (diff)
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
Notes
Notes: svn path=/head/; revision=43746
Diffstat (limited to 'mail/exim-devel')
-rw-r--r--mail/exim-devel/Makefile15
1 files changed, 8 insertions, 7 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile
index c634107e6923..ba8e023f0803 100644
--- a/mail/exim-devel/Makefile
+++ b/mail/exim-devel/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