summaryrefslogtreecommitdiff
path: root/mail/fetchmail
diff options
context:
space:
mode:
authorfrueauf <frueauf>2005-05-30 14:02:17 +0000
committerfrueauf <frueauf>2005-05-30 14:02:17 +0000
commit5d13f5805b7013eb8624244ec097ae24ef1bafa4 (patch)
tree8fa617b2bb46b884054b48e20951ed62c459f774 /mail/fetchmail
parent892b04ac5b6479e30ce7db24e2d36325654bceee (diff)
downloadpkgsrc-5d13f5805b7013eb8624244ec097ae24ef1bafa4.tar.gz
Avoid that "kerberos" appears more than once in PKG_OPTIONS.
Change suggested by Jukka Salmi.
Diffstat (limited to 'mail/fetchmail')
-rw-r--r--mail/fetchmail/options.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/fetchmail/options.mk b/mail/fetchmail/options.mk
index d12f3b02ed7..334ee57d5d0 100644
--- a/mail/fetchmail/options.mk
+++ b/mail/fetchmail/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.9 2005/05/24 19:01:34 frueauf Exp $
+# $NetBSD: options.mk,v 1.10 2005/05/30 14:02:17 frueauf Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fetchmail
PKG_SUPPORTED_OPTIONS= inet6 kerberos4 kerberos gssapi ssl
@@ -17,7 +17,7 @@ CONFIGURE_ARGS+= --enable-inet6
###
### Authentication via GSSAPI (currently only over Kerberos V) support.
###
-.if !empty(PKG_OPTIONS:Mgssapi)
+.if !empty(PKG_OPTIONS:Mgssapi) && empty(PKG_OPTIONS:Mkerberos)
PKG_OPTIONS+= kerberos
CONFIGURE_ARGS+= --with-gssapi=${KRB5BASE}
.else