pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security Recognize KERBEROS as a flag that can cause t...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/78af01f833bb
branches:  trunk
changeset: 466628:78af01f833bb
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Wed Jan 21 14:01:06 2004 +0000

description:
Recognize KERBEROS as a flag that can cause this package to be built using
Kerberos for GSSAPI support.

diffstat:

 security/cyrus-sasl2/Makefile     |  5 +++--
 security/cyrus-saslauthd/Makefile |  5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diffs (38 lines):

diff -r 8e3c5b8980b3 -r 78af01f833bb security/cyrus-sasl2/Makefile
--- a/security/cyrus-sasl2/Makefile     Wed Jan 21 13:52:56 2004 +0000
+++ b/security/cyrus-sasl2/Makefile     Wed Jan 21 14:01:06 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.21 2004/01/21 12:14:57 jlam Exp $
+# $NetBSD: Makefile,v 1.22 2004/01/21 14:01:06 jlam Exp $
 
 .include "Makefile.common"
 
@@ -25,7 +25,8 @@
 CONFIGURE_ARGS+=       --with-devrandom=/dev/urandom
 .endif
 
-.if defined(SASL_USE_GSSAPI) && !empty(SASL_USE_GSSAPI:M[yY][eE][sS])
+.if defined(KERBEROS) || \
+    (defined(SASL_USE_GSSAPI) && !empty(SASL_USE_GSSAPI:M[yY][eE][sS]))
 .  include "../../mk/krb5.buildlink3.mk"
 CONFIGURE_ARGS+=       --enable-gssapi=${KRB5BASE}     # GSSAPI
 LIBS+=                 -lcrypto
diff -r 8e3c5b8980b3 -r 78af01f833bb security/cyrus-saslauthd/Makefile
--- a/security/cyrus-saslauthd/Makefile Wed Jan 21 13:52:56 2004 +0000
+++ b/security/cyrus-saslauthd/Makefile Wed Jan 21 14:01:06 2004 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.7 2004/01/21 12:40:17 jlam Exp $
+# $NetBSD: Makefile,v 1.8 2004/01/21 14:01:06 jlam Exp $
 
 DISTNAME=      cyrus-sasl-2.1.17
 PKGNAME=       ${DISTNAME:S/sasl/saslauthd/}
@@ -48,7 +48,8 @@
 PLIST_SRC+=            ${PKGDIR}/PLIST.ldap
 .endif
 
-.if defined(SASL_USE_GSSAPI) && !empty(SASL_USE_GSSAPI:M[yY][eE][sS])
+.if defined(KERBEROS) || \
+    (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}}



Home | Main Index | Thread Index | Old Index