pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/comms/conserver8 Don't enable the inet6 option on the ...
details: https://anonhg.NetBSD.org/pkgsrc/rev/c3fd57ae228f
branches: trunk
changeset: 358331:c3fd57ae228f
user: he <he%pkgsrc.org@localhost>
date: Fri Feb 10 10:35:06 2017 +0000
description:
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:
comms/conserver8/Makefile | 4 ++--
comms/conserver8/options.mk | 10 ++++++++--
2 files changed, 10 insertions(+), 4 deletions(-)
diffs (38 lines):
diff -r bd6046a8f39e -r c3fd57ae228f comms/conserver8/Makefile
--- a/comms/conserver8/Makefile Fri Feb 10 08:41:25 2017 +0000
+++ b/comms/conserver8/Makefile Fri Feb 10 10:35:06 2017 +0000
@@ -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 -r bd6046a8f39e -r c3fd57ae228f comms/conserver8/options.mk
--- a/comms/conserver8/options.mk Fri Feb 10 08:41:25 2017 +0000
+++ b/comms/conserver8/options.mk Fri Feb 10 10:35:06 2017 +0000
@@ -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_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"
Home |
Main Index |
Thread Index |
Old Index