diff options
author | dholland <dholland@pkgsrc.org> | 2015-11-07 20:28:30 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-11-07 20:28:30 +0000 |
commit | 702c0e3d326d7d2bb009100c849f9017d2c489b4 (patch) | |
tree | 99db59a0ab5130e448f73f27f18bdeb382369ca6 /chat | |
parent | 344ebcc754a03662e8a343701e768a0d5d269817 (diff) | |
download | pkgsrc-702c0e3d326d7d2bb009100c849f9017d2c489b4.tar.gz |
Add gssapi option, off by default; unless enabled, explicitly disable
Kerberos support. Otherwise the configure script may find it and then
things fail; seen in the last PPC MacOS build.
Diffstat (limited to 'chat')
-rw-r--r-- | chat/ctrlproxy/options.mk | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/chat/ctrlproxy/options.mk b/chat/ctrlproxy/options.mk index 0d3218cf8c9..696754168a9 100644 --- a/chat/ctrlproxy/options.mk +++ b/chat/ctrlproxy/options.mk @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.1.1.1 2009/01/04 01:05:46 adrianp Exp $ +# $NetBSD: options.mk,v 1.2 2015/11/07 20:28:30 dholland Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.ctrlproxy -PKG_SUPPORTED_OPTIONS= ssl +PKG_SUPPORTED_OPTIONS= ssl gssapi .include "../../mk/bsd.options.mk" @@ -12,3 +12,9 @@ PKG_SUPPORTED_OPTIONS= ssl .if !empty(PKG_OPTIONS:Mssl) .include "../../security/gnutls/buildlink3.mk" .endif + +.if !empty(PKG_OPTIONS:Mgssapi) +.include "../../mk/krb5.buildlink3.mk" +.else +CONFIGURE_ARGS+= ac_cv_path_KRB5_CONFIG="no" +.endif |