diff options
author | frueauf <frueauf@pkgsrc.org> | 2005-05-30 14:02:17 +0000 |
---|---|---|
committer | frueauf <frueauf@pkgsrc.org> | 2005-05-30 14:02:17 +0000 |
commit | 82d13e1532cfbab1f9b8b8b1740b50b454987659 (patch) | |
tree | 8fa617b2bb46b884054b48e20951ed62c459f774 /mail | |
parent | 810ffe10ac95a0f10c000767474d5ffb16b1a12d (diff) | |
download | pkgsrc-82d13e1532cfbab1f9b8b8b1740b50b454987659.tar.gz |
Avoid that "kerberos" appears more than once in PKG_OPTIONS.
Change suggested by Jukka Salmi.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/fetchmail/options.mk | 4 |
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 |