Skip to content

Commit edc6c80

Browse files
committedOct 27, 2021
Merge branch 'fibers' of https://github.com/openjdk/loom into fibers
2 parents 0168e32 + 9b98ac2 commit edc6c80

File tree

407 files changed

+15140
-3916
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

407 files changed

+15140
-3916
lines changed
 

‎make/CreateJmods.gmk

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -196,6 +196,11 @@ else # not java.base
196196
endif
197197
endif
198198

199+
# Set main class of jdk.httpserver module
200+
ifeq ($(MODULE), jdk.httpserver)
201+
JMOD_FLAGS += --main-class sun.net.httpserver.simpleserver.Main
202+
endif
203+
199204
# Changes to the jmod tool itself should also trigger a rebuild of all jmods.
200205
# The variable JMOD_CMD could contain an environment variable assignment before
201206
# the actual command. Filter that out using wildcard before adding to DEPS.

‎make/ToolsJdk.gmk

+2
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,8 @@ TOOL_MAKEJAVASECURITY = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_clas
7575
build.tools.makejavasecurity.MakeJavaSecurity
7676

7777
TOOL_GENERATECACERTS = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \
78+
-Dkeystore.pkcs12.certProtectionAlgorithm=NONE \
79+
-Dkeystore.pkcs12.macAlgorithm=NONE \
7880
build.tools.generatecacerts.GenerateCacerts
7981

8082
TOOL_GENERATEEMOJIDATA = $(JAVA_SMALL) -cp $(BUILDTOOLS_OUTPUTDIR)/jdk_tools_classes \

0 commit comments

Comments
 (0)