summaryrefslogtreecommitdiff
path: root/mail/fetchmail
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-05 23:55:01 +0000
committerrillig <rillig@pkgsrc.org>2005-12-05 23:55:01 +0000
commit579e97796954edc2469fac176e855589e1dc2997 (patch)
tree1390f4897127f87b9dc78eb04234494436dbf1a4 /mail/fetchmail
parenta86447cb0763e94327a0380243bb3a2cc0ecbb68 (diff)
downloadpkgsrc-579e97796954edc2469fac176e855589e1dc2997.tar.gz
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'mail/fetchmail')
-rw-r--r--mail/fetchmail/options.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/fetchmail/options.mk b/mail/fetchmail/options.mk
index 86307d57e40..c304cd60949 100644
--- a/mail/fetchmail/options.mk
+++ b/mail/fetchmail/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.13 2005/10/25 17:52:38 scottr Exp $
+# $NetBSD: options.mk,v 1.14 2005/12/05 23:55:10 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.fetchmail
PKG_SUPPORTED_OPTIONS= inet6 kerberos4 kerberos gssapi ssl
@@ -20,7 +20,7 @@ CONFIGURE_ARGS+= --enable-inet6
### Authentication via GSSAPI (currently only over Kerberos V) support.
###
.if !empty(PKG_OPTIONS:Mgssapi)
-CONFIGURE_ARGS+= --with-gssapi=${KRB5BASE}
+CONFIGURE_ARGS+= --with-gssapi=${KRB5BASE:Q}
.else
CONFIGURE_ARGS+= --with-gssapi=no
.endif
@@ -44,7 +44,7 @@ CONFIGURE_ARGS+= --with-kerberos=no
.if !empty(PKG_OPTIONS:Mkerberos) || !empty(PKG_OPTIONS:Mgssapi)
. include "../../mk/krb5.buildlink3.mk"
PKG_USE_KERBEROS= yes
-CONFIGURE_ARGS+= --with-kerberos5=${KRB5BASE}
+CONFIGURE_ARGS+= --with-kerberos5=${KRB5BASE:Q}
.else
CONFIGURE_ARGS+= --with-kerberos5=no
.endif
@@ -54,7 +54,7 @@ CONFIGURE_ARGS+= --with-kerberos5=no
###
.if !empty(PKG_OPTIONS:Mssl)
. include "../../security/openssl/buildlink3.mk"
-CONFIGURE_ARGS+= --with-ssl=${SSLBASE}
+CONFIGURE_ARGS+= --with-ssl=${SSLBASE:Q}
.else
CONFIGURE_ARGS+= --without-ssl
.endif