diff options
author | jlam <jlam@pkgsrc.org> | 2004-03-31 06:49:41 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-03-31 06:49:41 +0000 |
commit | 67d7561134c07e400771e45e0ee0beeec5eaea88 (patch) | |
tree | 4e3711df61c4dae8daf19e8f64fe923d284c0f0a /security | |
parent | 24fe4305951247b437f05198d6fd10dcbdac3a22 (diff) | |
download | pkgsrc-67d7561134c07e400771e45e0ee0beeec5eaea88.tar.gz |
Let KERBEROS imply SASL_USE_GSSAPI.
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-saslauthd/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/security/cyrus-saslauthd/Makefile b/security/cyrus-saslauthd/Makefile index 1a16ff6cf0c..938466241b9 100644 --- a/security/cyrus-saslauthd/Makefile +++ b/security/cyrus-saslauthd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2004/03/29 05:50:26 jlam Exp $ +# $NetBSD: Makefile,v 1.12 2004/03/31 06:49:41 jlam Exp $ DISTNAME= cyrus-sasl-2.1.18 PKGNAME= ${DISTNAME:S/sasl/saslauthd/} @@ -49,8 +49,10 @@ CONFIGURE_ARGS+= --with-openssl=${SSLBASE} PLIST_SRC+= ${PKGDIR}/PLIST.ldap .endif -.if defined(KERBEROS) || \ - (defined(SASL_USE_GSSAPI) && !empty(SASL_USE_GSSAPI:M[yY][eE][sS])) +.if defined(KERBEROS) +SASL_USE_GSSAPI= yes +.endif +.if (defined(SASL_USE_GSSAPI) && !empty(SASL_USE_GSSAPI:M[yY][eE][sS])) . include "../../mk/krb5.buildlink3.mk" CONFIGURE_ARGS+= --enable-gssapi=${KRB5BASE} CONFIGURE_ARGS+= --with-gss_impl=${GSSIMPL.${KRB5_TYPE}} |