summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorhe <he@pkgsrc.org>2017-02-10 10:35:06 +0000
committerhe <he@pkgsrc.org>2017-02-10 10:35:06 +0000
commit141026b670e03108f479693808725647b6ac5f65 (patch)
treef77a832450c3d8260344a6a18f15cb9c56782f39 /comms
parent53f851efe83796b1e727aed0f2aafcffcd572a2c (diff)
downloadpkgsrc-141026b670e03108f479693808725647b6ac5f65.tar.gz
Don't enable the inet6 option on the various BSDs, since their stack
require separate inet6 and inet sockets, and conserver as of 8.2.1 doesn't do that. Bump PKGREVISION.
Diffstat (limited to 'comms')
-rw-r--r--comms/conserver8/Makefile4
-rw-r--r--comms/conserver8/options.mk10
2 files changed, 10 insertions, 4 deletions
diff --git a/comms/conserver8/Makefile b/comms/conserver8/Makefile
index 6f02bb38fc7..1bd6d655cab 100644
--- a/comms/conserver8/Makefile
+++ b/comms/conserver8/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.22 2017/01/18 09:54:51 he Exp $
+# $NetBSD: Makefile,v 1.23 2017/02/10 10:35:06 he Exp $
#
PKGVER= 8.2.1
-PKGREVISION= 3
+PKGREVISION= 4
DISTNAME= conserver-${PKGVER}
PKGNAME= conserver8-${PKGVER}
CATEGORIES= comms
diff --git a/comms/conserver8/options.mk b/comms/conserver8/options.mk
index 1a8400b4dad..df22c63c9d5 100644
--- a/comms/conserver8/options.mk
+++ b/comms/conserver8/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.4 2016/06/20 15:25:39 schnoebe Exp $
+# $NetBSD: options.mk,v 1.5 2017/02/10 10:35:06 he Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.conserver8
@@ -7,7 +7,13 @@ PKG_OPTIONS_GROUP.connectivity=inet6 uds
PKG_SUPPORTED_OPTIONS= pam ssl
-PKG_SUGGESTED_OPTIONS= ssl inet6
+PKG_SUGGESTED_OPTIONS= ssl
+
+# The BSDs require separate inet6 & inet sockets,
+# and conserver8 doesn't have code to do that as of 8.2.1
+.if ${OPSYS} != "NetBSD" && ${OPSYS} != "FreeBSD" && ${OPSYS} != "OpenBSD" && ${OPSYS} != "DragonFly"
+PKG_SUGGESTED_OPTIONS+= inet6
+.endif
.include "../../mk/bsd.options.mk"