head 1.3; access; symbols pkgsrc-2020Q1:1.2.0.2 pkgsrc-2020Q1-base:1.2 pkgsrc-2019Q4:1.2.0.24 pkgsrc-2019Q4-base:1.2 pkgsrc-2019Q3:1.2.0.20 pkgsrc-2019Q3-base:1.2 pkgsrc-2019Q2:1.2.0.18 pkgsrc-2019Q2-base:1.2 pkgsrc-2019Q1:1.2.0.16 pkgsrc-2019Q1-base:1.2 pkgsrc-2018Q4:1.2.0.14 pkgsrc-2018Q4-base:1.2 pkgsrc-2018Q3:1.2.0.12 pkgsrc-2018Q3-base:1.2 pkgsrc-2018Q2:1.2.0.10 pkgsrc-2018Q2-base:1.2 pkgsrc-2018Q1:1.2.0.8 pkgsrc-2018Q1-base:1.2 pkgsrc-2017Q4:1.2.0.6 pkgsrc-2017Q4-base:1.2 pkgsrc-2017Q3:1.2.0.4 pkgsrc-2017Q3-base:1.2 pkgsrc-2017Q2:1.1.0.20 pkgsrc-2017Q2-base:1.1 pkgsrc-2017Q1:1.1.0.18 pkgsrc-2017Q1-base:1.1 pkgsrc-2016Q4:1.1.0.16 pkgsrc-2016Q4-base:1.1 pkgsrc-2016Q3:1.1.0.14 pkgsrc-2016Q3-base:1.1 pkgsrc-2016Q2:1.1.0.12 pkgsrc-2016Q2-base:1.1 pkgsrc-2016Q1:1.1.0.10 pkgsrc-2016Q1-base:1.1 pkgsrc-2015Q4:1.1.0.8 pkgsrc-2015Q4-base:1.1 pkgsrc-2015Q3:1.1.0.6 pkgsrc-2015Q3-base:1.1 pkgsrc-2015Q2:1.1.0.4 pkgsrc-2015Q2-base:1.1 pkgsrc-2015Q1:1.1.0.2 pkgsrc-2015Q1-base:1.1; locks; strict; comment @# @; 1.3 date 2020.05.17.00.47.06; author tnn; state dead; branches; next 1.2; commitid by06jUrXKAUzQw8C; 1.2 date 2017.08.14.00.02.16; author ryoon; state Exp; branches; next 1.1; commitid FNK38syeYrmeY63A; 1.1 date 2015.01.27.12.31.06; author ryoon; state Exp; branches; next ; commitid NRF2fZJKUDbw0F7y; desc @@ 1.3 log @retire lang/openjdk7 @ text @$NetBSD: patch-jdk_make_com_sun_nio_Makefile,v 1.2 2017/08/14 00:02:16 ryoon Exp $ * NetBSD has no SCTP support. --- jdk/make/com/sun/nio/Makefile.orig 2017-08-13 05:55:12.000000000 +0000 +++ jdk/make/com/sun/nio/Makefile @@@@ -31,7 +31,7 @@@@ BUILDDIR = ../../.. include $(BUILDDIR)/common/Defs.gmk # MMM: disable for now -ifeq (, $(findstring $(PLATFORM), macosx aix)) +ifeq (, $(findstring $(PLATFORM), macosx aix netbsd)) include $(BUILDDIR)/common/Subdirs.gmk SUBDIRS = sctp endif @ 1.2 log @Update to 1.7.141 * Support build and run under NetBSD PaX MPROTECT environment Changelog: Many bugfixes and security bugfixes @ text @d1 1 a1 1 $NetBSD: patch-jdk_make_com_sun_nio_Makefile,v 1.1 2015/01/27 12:31:06 ryoon Exp $ @ 1.1 log @Update to 1.7.76 * Disable SCTP support under NetBSD. Changelog: From: http://www.oracle.com/technetwork/java/javase/7u76-relnotes-2389087.html IANA Data 2014j JDK 7u76 contains IANA time zone data version 2014j. For more information, refer to Timezone Data Versions in the JRE Software. New Features and Changes SSLv3 is disabled by default Starting with JDK 7u75 release, the SSLv3 protocol (Secure Socket Layer) has been deactivated and is not available by default. See the java.security.Security property jdk.tls.disabledAlgorithms in /lib/security/java.security file. If SSLv3 is absolutely required, the protocol can be reactivated by removing "SSLv3" from the jdk.tls.disabledAlgorithms property in the java.security file or by dynamically setting this Security property to "true" before JSSE is initialized. It should be noted that SSLv3 is obsolete and should no longer be used. Changes to Java Control Panel Starting with 7u75 release, SSLv3 protocol is removed from Java Control Panel Advanced options. If the user needs to use SSLv3 for applications, re-enable it manually as follows: Enable SSLv3 protocol on JRE level: as described in the previous section. Enable SSLv3 protocol on deploy level: edit the deployment.properties file and add the following: deployment.security.SSLv3=true @ text @d1 1 a1 1 $NetBSD$ d5 1 a5 1 --- jdk/make/com/sun/nio/Makefile.orig 2015-01-26 15:20:56.000000000 +0000 d7 2 a8 1 @@@@ -29,8 +29,12 @@@@ d10 3 a12 5 BUILDDIR = ../../.. include $(BUILDDIR)/common/Defs.gmk + +# disable for NetBSD +ifneq ($(OS_VENDOR), NetBSD) d15 1 a15 4 +endif all build clean clobber:: $(SUBDIRS-loop) @