diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2000-12-02 16:20:18 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2000-12-02 16:20:18 +0000 |
commit | ae3988ecaa8d9833ababfdc1d048ee2c0f267f7a (patch) | |
tree | ca71e4b74612c5b3111410efc2479bdde11c6795 /mail/fetchmail | |
parent | 9d1115da800fb90a4506fb8087ff817f3633ee98 (diff) |
Add WITH_NTLM toggle to optionally build support for NTLM authentication.
Bump PORTREVISION to reflect functionality change.
PR: 23214
Submitted by: William M. Perry <wmperry@aventail.com>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=35604
Diffstat (limited to 'mail/fetchmail')
-rw-r--r-- | mail/fetchmail/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index a2101ba636bd..deda5a1956ac 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -11,6 +11,7 @@ PORTNAME= fetchmail PORTVERSION= 5.6.0 +PORTREVISION= 1 CATEGORIES= mail ipv6 MASTER_SITES= http://www.tuxedo.org/~esr/fetchmail/ \ ftp://ftp.ccil.org/pub/esr/fetchmail/ @@ -50,6 +51,10 @@ CONFIGURE_ARGS += --with-kerberos=/usr/include CONFIGURE_ARGS += --with-kerberos5=${KRB5_HOME} .endif +.if defined(WITH_NTLM) +CONFIGURE_ARGS += --enable-NTLM +.endif + FDOC= ${PREFIX}/share/doc/fetchmail pre-patch: |