diff options
author | chris <chris@pkgsrc.org> | 2002-11-13 10:39:12 +0000 |
---|---|---|
committer | chris <chris@pkgsrc.org> | 2002-11-13 10:39:12 +0000 |
commit | 418f424ad36255e65142fa49ceb0edfe455ad666 (patch) | |
tree | ecd28c93df87920287a4cf38246cea9b0a7a61e3 /security/cyrus-sasl2/Makefile | |
parent | 429e45ec442b631234acbce7232bf69bcc5786c8 (diff) | |
download | pkgsrc-418f424ad36255e65142fa49ceb0edfe455ad666.tar.gz |
Fix support for kerberos 5, it now compiles and installs properly when
SASL_USE_GSSAPI is defined to yes. Note untested as I don't have kerberos
setup, it probably won't work until some patches are put in to fix plugins
not working.
Diffstat (limited to 'security/cyrus-sasl2/Makefile')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index c486915ad28..f55b887975e 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2002/10/27 23:32:36 seb Exp $ +# $NetBSD: Makefile,v 1.3 2002/11/13 10:39:12 chris Exp $ DISTNAME= cyrus-sasl-2.1.9 SVR4_PKGNAME= csasl @@ -53,7 +53,7 @@ CONFIGURE_ARGS+= --disable-srp # --- no SRP CONFIGURE_ARGS+= --disable-krb4 # --- no KERBEROS_V4 CONFIGURE_ARGS+= --enable-otp # OTP -.if defined(SASL_USE_GSSAPI) && ${SASL_USE_GSSAPI} == "YES" +.if !empty(SASL_USE_GSSAPI:M[yY][eE][sS]) CONFIGURE_ARGS+= --enable-gssapi=/usr # GSSAPI PLIST_SRC+= ${.CURDIR}/PLIST.krb5 .else @@ -81,6 +81,7 @@ post-extract: pre-configure: cd ${WRKSRC} && ${AUTOHEADER} cd ${WRKSRC} && ${AUTOMAKE} --gnu -i + cd ${WRKSRC}/saslauthd && ${AUTOMAKE} --gnu -i cd ${WRKSRC} && ${AUTOCONF} post-install: |