diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-05 23:55:01 +0000 |
commit | 579e97796954edc2469fac176e855589e1dc2997 (patch) | |
tree | 1390f4897127f87b9dc78eb04234494436dbf1a4 /security/cyrus-saslauthd | |
parent | a86447cb0763e94327a0380243bb3a2cc0ecbb68 (diff) | |
download | pkgsrc-579e97796954edc2469fac176e855589e1dc2997.tar.gz |
Ran "pkglint --autofix", which corrected some of the quoting issues in
CONFIGURE_ARGS.
Diffstat (limited to 'security/cyrus-saslauthd')
-rw-r--r-- | security/cyrus-saslauthd/Makefile | 8 | ||||
-rw-r--r-- | security/cyrus-saslauthd/options.mk | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/security/cyrus-saslauthd/Makefile b/security/cyrus-saslauthd/Makefile index eff31978872..3fa9514cc94 100644 --- a/security/cyrus-saslauthd/Makefile +++ b/security/cyrus-saslauthd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2005/12/05 20:50:55 rillig Exp $ +# $NetBSD: Makefile,v 1.26 2005/12/05 23:55:17 rillig Exp $ DISTNAME= cyrus-sasl-2.1.20 PKGNAME= ${DISTNAME:S/sasl/saslauthd/} @@ -21,15 +21,15 @@ HOMEPAGE= http://asg.web.cmu.edu/sasl/ COMMENT= Cyrus SASL plaintext authentication daemon GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR:Q} BUILD_TARGET= all saslcache testsaslauthd SASLSOCKETDIR?= ${VARBASE}/run/saslauthd BUILD_DEFS+= SASLSOCKETDIR FILES_SUBST+= SASLSOCKETDIR=${SASLSOCKETDIR:Q} -CONFIGURE_ARGS+= --with-saslauthd="${SASLSOCKETDIR}" -CONFIGURE_ARGS+= --with-openssl=${SSLBASE} +CONFIGURE_ARGS+= --with-saslauthd=${SASLSOCKETDIR:Q} +CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q} .include "options.mk" diff --git a/security/cyrus-saslauthd/options.mk b/security/cyrus-saslauthd/options.mk index 09802b75bfd..2a301974c5e 100644 --- a/security/cyrus-saslauthd/options.mk +++ b/security/cyrus-saslauthd/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2005/05/31 11:24:33 dillo Exp $ +# $NetBSD: options.mk,v 1.7 2005/12/05 23:55:17 rillig Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.cyrus-saslauthd PKG_SUPPORTED_OPTIONS= pam kerberos ldap gssapi @@ -9,7 +9,7 @@ PKG_SUPPORTED_OPTIONS= pam kerberos ldap gssapi ### .if !empty(PKG_OPTIONS:Mpam) . include "../../mk/pam.buildlink3.mk" -CONFIGURE_ARGS+= --with-pam=${PAMBASE} +CONFIGURE_ARGS+= --with-pam=${PAMBASE:Q} .endif ### @@ -39,7 +39,7 @@ PKG_OPTIONS+= gssapi ### .if !empty(PKG_OPTIONS:Mgssapi) . include "../../mk/krb5.buildlink3.mk" -CONFIGURE_ARGS+= --enable-gssapi=${KRB5BASE} +CONFIGURE_ARGS+= --enable-gssapi=${KRB5BASE:Q} CONFIGURE_ARGS+= --with-gss_impl=${GSSIMPL.${KRB5_TYPE}} GSSIMPL.heimdal= heimdal GSSIMPL.mit-krb5= mit |