summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authordholland <dholland>2015-11-07 20:28:30 +0000
committerdholland <dholland>2015-11-07 20:28:30 +0000
commitbb80a95ccdae36a6c78676b1e811bebf3c604e47 (patch)
tree99db59a0ab5130e448f73f27f18bdeb382369ca6 /chat
parent2df729730c2b669d398775af3472e17e9afaa18c (diff)
downloadpkgsrc-bb80a95ccdae36a6c78676b1e811bebf3c604e47.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.mk10
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