diff options
author | max <max@FreeBSD.org> | 1997-11-29 22:22:27 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-11-29 22:22:27 +0800 |
commit | ba5dcde4faa30460274e47a3540ce24e9b95a8d0 (patch) | |
tree | 44c9800dcecc6b1205424c543e72aaa0d542fb7e /mail | |
parent | b9b8177cc5183912aaa49a6bae9db8243fbc6a54 (diff) | |
download | freebsd-ports-gnome-ba5dcde4faa30460274e47a3540ce24e9b95a8d0.tar.gz freebsd-ports-gnome-ba5dcde4faa30460274e47a3540ce24e9b95a8d0.tar.zst freebsd-ports-gnome-ba5dcde4faa30460274e47a3540ce24e9b95a8d0.zip |
People who want KerberosIV support might have MAKE_KERBEROS4 defined
instead of MAKE_EBONES nowadays.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/fetchmail/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/fetchmail/Makefile b/mail/fetchmail/Makefile index a6e804c75833..71423214ef82 100644 --- a/mail/fetchmail/Makefile +++ b/mail/fetchmail/Makefile @@ -3,7 +3,7 @@ # Date created: 26 Oct 1996 # Whom: Ville Eerola <ve@sci.fi> # -# $Id: Makefile,v 1.50 1997/10/28 04:40:39 asami Exp $ +# $Id: Makefile,v 1.51 1997/11/29 14:17:10 max Exp $ # DISTNAME= fetchmail-4.3.3 @@ -17,7 +17,7 @@ CONFIGURE_ARGS+= --enable-opie CONFIGURE_ENV+= LDFLAGS="${CFLAGS}" MAN1= fetchmail.1 -.if exists(/usr/lib/libkrb.a) && defined(MAKE_EBONES) +.if exists(/usr/lib/libkrb.a) && (defined(MAKE_EBONES) || defined(MAKE_KERBEROS4)) CONFIGURE_ARGS += --with-kerberos=/usr/include/kerberosIV .endif |