diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-03-23 19:19:55 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2003-03-23 19:19:55 +0000 |
commit | 668f42d80462fd112dfd5962bc50db2d8f9897ac (patch) | |
tree | 5d200588c73f1857ac08772c583bd06e9e47c6ed | |
parent | Update to 3.2-5 (diff) |
Add WITHOUT_KERBEROS option to prevent cyrus-sasl2 from enabling
Kerberos even if libkrb is installed.
Requested by: Troy Dixler <troy@twisted.net>
-rw-r--r-- | security/cyrus-sasl2/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index 23a33c663921..7a525357fece 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -85,7 +85,7 @@ CONFIGURE_ARGS+= --disable-gssapi GSSAPI= "@comment " .endif -.if exists(/usr/lib/libkrb.a) +.if exists(/usr/lib/libkrb.a) && !defined(WITHOUT_KERBEROS) CONFIGURE_ARGS+= --enable-krb4 .else CONFIGURE_ARGS+= --disable-krb4 |