pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/comms/conserver8



Module Name:    pkgsrc
Committed By:   he
Date:           Fri Feb 10 10:35:06 UTC 2017

Modified Files:
        pkgsrc/comms/conserver8: Makefile options.mk

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/comms/conserver8/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/comms/conserver8/options.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/comms/conserver8/Makefile
diff -u pkgsrc/comms/conserver8/Makefile:1.22 pkgsrc/comms/conserver8/Makefile:1.23
--- pkgsrc/comms/conserver8/Makefile:1.22       Wed Jan 18 09:54:51 2017
+++ pkgsrc/comms/conserver8/Makefile    Fri Feb 10 10:35:06 2017
@@ -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

Index: pkgsrc/comms/conserver8/options.mk
diff -u pkgsrc/comms/conserver8/options.mk:1.4 pkgsrc/comms/conserver8/options.mk:1.5
--- pkgsrc/comms/conserver8/options.mk:1.4      Mon Jun 20 15:25:39 2016
+++ pkgsrc/comms/conserver8/options.mk  Fri Feb 10 10:35:06 2017
@@ -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"
 



Home | Main Index | Thread Index | Old Index