summaryrefslogtreecommitdiff
path: root/comms/conserver8/options.mk
diff options
context:
space:
mode:
authorschnoebe <schnoebe@pkgsrc.org>2016-03-13 18:31:11 +0000
committerschnoebe <schnoebe@pkgsrc.org>2016-03-13 18:31:11 +0000
commit3d4a1472d37593b2ff2ef61d977ed0ab37d47c68 (patch)
treea298778914177b6b1b9e71479d923483f6e74194 /comms/conserver8/options.mk
parentce4c8715168e4b9e8e747ca82ef34bec7a7b3eec (diff)
downloadpkgsrc-3d4a1472d37593b2ff2ef61d977ed0ab37d47c68.tar.gz
Upstream: Update to 8.2.1
version 8.2.1 (Jun 2, 2015): - added TCP keepalives between client and server - TCP-based consoles already had the code - this was mostly an oversight - patch for SEGV and task execution - patch by Artem Savkov <asavkov@redhat.com> - expanded break sequences from [1-9] to [1-9a-z] - based on patch by Artem Savkov <asavkov@redhat.com> pkgsrc: options.mk: add support inet6 The way the conserver is coded, you get inet6 or you get uds patches/patch-conserver_readcfg.c: new patch, fixing a setproctitle() bug with inet6. This needs to be sent upstream. Makefile: install sample configurations Change maintainer to pkgsrc-users@netbsd.org old maintainer address bounced. drop ``--with-regex'' option, it's no longer supported.
Diffstat (limited to 'comms/conserver8/options.mk')
-rw-r--r--comms/conserver8/options.mk15
1 files changed, 12 insertions, 3 deletions
diff --git a/comms/conserver8/options.mk b/comms/conserver8/options.mk
index 20c9b980bb8..2bd53ef2436 100644
--- a/comms/conserver8/options.mk
+++ b/comms/conserver8/options.mk
@@ -1,8 +1,13 @@
-# $NetBSD: options.mk,v 1.1 2009/06/14 07:52:51 wiz Exp $
+# $NetBSD: options.mk,v 1.2 2016/03/13 18:31:11 schnoebe Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.conserver8
-PKG_SUPPORTED_OPTIONS= pam ssl uds
-PKG_SUGGESTED_OPTIONS= ssl
+
+PKG_OPTIONS_REQUIRED_GROUPS= connectivity
+PKG_OPTIONS_GROUP.connectivity=inet6 uds
+
+PKG_SUPPORTED_OPTIONS= pam ssl
+
+PKG_SUGGESTED_OPTIONS= ssl inet6
.include "../../mk/bsd.options.mk"
@@ -15,6 +20,10 @@ CONFIGURE_ARGS+= --with-pam
CONFIGURE_ARGS+= --with-uds
.endif
+.if !empty(PKG_OPTIONS:Minet6)
+CONFIGURE_ARGS+= --with-ipv6
+.endif
+
.if !empty(PKG_OPTIONS:Mssl)
CONFIGURE_ARGS+= --with-openssl=${SSLBASE:Q}
. include "../../security/openssl/buildlink3.mk"