summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhe <he>2017-02-10 10:35:06 +0000
committerhe <he>2017-02-10 10:35:06 +0000
commit80a3fd9dafe5b7e632eba79756520ab975f45f23 (patch)
treedfac32b9edbaf0266ce0c77f2ff2ca9cddce8d3b
parentdc0b4fda637fac43ce17bbcef75cb7e2e4e3acb2 (diff)
downloadpkgsrc-80a3fd9dafe5b7e632eba79756520ab975f45f23.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.
-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"