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 | 0504c7a8437d434e9cdc6b31ee3164c26a37f1f4 (patch) | |
tree | 4e3711df61c4dae8daf19e8f64fe923d284c0f0a /security | |
parent | 08d1f5f33445ab52a2d3282ecc6d1f0f9a423ff1 (diff) | |
download | pkgsrc-0504c7a8437d434e9cdc6b31ee3164c26a37f1f4.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}} |