diff options
author | chris <chris@pkgsrc.org> | 2002-11-13 10:44:26 +0000 |
---|---|---|
committer | chris <chris@pkgsrc.org> | 2002-11-13 10:44:26 +0000 |
commit | 449b9f7388f441ca7287103d6fb68578a841bd48 (patch) | |
tree | c30a9d29154beea20aa7dd027a6d837c0899c296 /security | |
parent | 418f424ad36255e65142fa49ceb0edfe455ad666 (diff) | |
download | pkgsrc-449b9f7388f441ca7287103d6fb68578a841bd48.tar.gz |
Make it build again if you don't have SASL_USE_GSSAPI set anywhere.
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index f55b887975e..75e6f430d76 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2002/11/13 10:39:12 chris Exp $ +# $NetBSD: Makefile,v 1.4 2002/11/13 10:44:26 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 !empty(SASL_USE_GSSAPI:M[yY][eE][sS]) +.if defined(SASL_USE_GSSAPI) && !empty(SASL_USE_GSSAPI:M[yY][eE][sS]) CONFIGURE_ARGS+= --enable-gssapi=/usr # GSSAPI PLIST_SRC+= ${.CURDIR}/PLIST.krb5 .else |