diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2000-02-19 17:18:27 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2000-02-19 17:18:27 +0000 |
commit | 1b39f669dff4a7f55650fb0ec9cb7af7ad448cc1 (patch) | |
tree | 2ed3badebc7b4ed9f9eb97781baf2248bb458f1e /mail/exim-old/Makefile | |
parent | Upgrade GNU Portable Threads (Pth) from version 1.2.2 to 1.3.0, (diff) |
Add knobs (turned off by default) for non-standard mailbox formats.
Submitted by: Johann Visagie <wjv@sunesi.net>
Notes
Notes:
svn path=/head/; revision=26013
Diffstat (limited to 'mail/exim-old/Makefile')
-rw-r--r-- | mail/exim-old/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mail/exim-old/Makefile b/mail/exim-old/Makefile index 9b996b8c1f79..0faf3ed67892 100644 --- a/mail/exim-old/Makefile +++ b/mail/exim-old/Makefile @@ -39,6 +39,11 @@ LDAP_LIB_TYPE= UMICHIGAN PAM_CRAM_MD5= YES PAM_PLAINTEXT= YES +# Uncomment to compile support for non-standard mailbox formats. +#USE_MAILDIR= YES +#USE_MAILSTORE= YES +#USE_MBX= YES + # You should not need to fiddle with anything below this point. SEDLIST= -e 's,XX_PREFIX_XX,${PREFIX},' \ @@ -84,6 +89,18 @@ SEDLIST+= -e 's/^AUTH_CRAM_MD5/\#AUTH_CRAM_MD5/' SEDLIST+= -e 's/^AUTH_PLAINTEXT/\#AUTH_PLAINTEXT/' .endif +.if defined(USE_MAILDIR) && ${USE_MAILDIR} == YES +SEDLIST+= -e 's/^\# SUPPORT_MAILDIR/SUPPORT_MAILDIR/' +.endif + +.if defined(USE_MAILSTORE) && ${USE_MAILSTORE} == YES +SEDLIST+= -e 's/^\# SUPPORT_MAILSTORE/SUPPORT_MAILSTORE/' +.endif + +.if defined(USE_MBX) && ${USE_MBX} == YES +SEDLIST+= -e 's/^\# SUPPORT_MBX/SUPPORT_MBX/' +.endif + do-configure: ${MKDIR} ${WRKSRC}/Local ${SED} ${SEDLIST} < ${FILESDIR}/Makefile > ${WRKSRC}/Local/Makefile |