Skip to content

Commit 4fe1aff

Browse files
authored
Merge pull request #226 from dragonwell-project/dragonwell_standard-17.0.19.0.20+10
Merge tag 'jdk-17.0.19+10' into dragonwell_standard-17.0.19.0.20+10
2 parents 0e7a193 + 825277f commit 4fe1aff

871 files changed

Lines changed: 35342 additions & 24825 deletions

File tree

Some content is hidden

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

.jcheck/conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[general]
22
project=jdk-updates
33
jbs=JDK
4-
version=17.0.18
4+
version=17.0.19
55

66
[checks]
77
error=author,committer,reviewers,merge,issues,executable,symlink,message,hg-tag,whitespace,problemlists

make/autoconf/boot-jdk.m4

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,9 @@ AC_DEFUN_ONCE([BOOTJDK_SETUP_BOOT_JDK_ARGUMENTS],
420420
# Force en-US environment
421421
UTIL_ADD_JVM_ARG_IF_OK([-Duser.language=en -Duser.country=US],boot_jdk_jvmargs,[$JAVA])
422422
423+
UTIL_ADD_JVM_ARG_IF_OK([-Xlog:all=off:stdout],boot_jdk_jvmargs,[$JAVA])
424+
UTIL_ADD_JVM_ARG_IF_OK([-Xlog:all=warning:stderr],boot_jdk_jvmargs,[$JAVA])
425+
423426
if test "x$BOOTJDK_USE_LOCAL_CDS" = xtrue; then
424427
# Use our own CDS archive
425428
UTIL_ADD_JVM_ARG_IF_OK([$boot_jdk_cds_args -Xshare:auto],boot_jdk_jvmargs,[$JAVA])

make/autoconf/lib-bundled.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,8 @@ AC_DEFUN_ONCE([LIB_SETUP_ZLIB],
219219
LIBZ_LIBS=""
220220
if test "x$USE_EXTERNAL_LIBZ" = "xfalse"; then
221221
LIBZ_CFLAGS="$LIBZ_CFLAGS -I$TOPDIR/src/java.base/share/native/libzip/zlib"
222-
if test "x$OPENJDK_TARGET_OS" = xmacosx; then
223-
LIBZ_CFLAGS="$LIBZ_CFLAGS -DHAVE_UNISTD_H"
222+
if test "x$OPENJDK_TARGET_OS" = xmacosx -o "x$OPENJDK_TARGET_OS" = xaix -o "x$OPENJDK_TARGET_OS" = xlinux; then
223+
LIBZ_CFLAGS="$LIBZ_CFLAGS -DHAVE_UNISTD_H=1 -DHAVE_STDARG_H=1"
224224
fi
225225
else
226226
LIBZ_LIBS="-lz"

make/autoconf/lib-tests.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2018, 2024, 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
@@ -28,7 +28,7 @@
2828
################################################################################
2929

3030
# Minimum supported versions
31-
JTREG_MINIMUM_VERSION=7.3.1
31+
JTREG_MINIMUM_VERSION=7.4
3232
GTEST_MINIMUM_VERSION=1.13.0
3333

3434
###############################################################################

make/autoconf/platform.m4

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2011, 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2011, 2026, 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
@@ -305,6 +305,12 @@ AC_DEFUN([PLATFORM_EXTRACT_TARGET_AND_BUILD],
305305
else
306306
OPENJDK_BUILD_OS_ENV="$VAR_OS"
307307
fi
308+
# Special handling for MSYS2 that reports a Cygwin triplet as the default host triplet.
309+
case `uname` in
310+
MSYS*)
311+
OPENJDK_BUILD_OS_ENV=windows.msys2
312+
;;
313+
esac
308314
OPENJDK_BUILD_CPU="$VAR_CPU"
309315
OPENJDK_BUILD_CPU_ARCH="$VAR_CPU_ARCH"
310316
OPENJDK_BUILD_CPU_BITS="$VAR_CPU_BITS"

make/common/Utils.gmk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ EscapeDollar = $(subst $$,\$$,$(subst \$$,$$,$(strip $1)))
4747

4848
################################################################################
4949
# This macro works just like EscapeDollar above, but for #.
50-
EscapeHash = $(subst \#,\\\#,$(subst \\\#,\#,$(strip $1)))
50+
EscapeHash = $(subst $(HASH),\$(HASH),$(subst \$(HASH),$(HASH),$(strip $1)))
5151

5252
################################################################################
5353
# This macro translates $ into $$ to protect the string from make itself.

make/conf/github-actions.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
BOOT_JDK_VERSION=17
2929
GTEST_VERSION=1.13.0
30-
JTREG_VERSION=7.3.1+1
30+
JTREG_VERSION=7.4+1
3131

3232
LINUX_X64_BOOT_JDK_FILENAME=openjdk-17.0.6_linux-x64_bin.tar.gz
3333
LINUX_X64_BOOT_JDK_EXT=tar.gz

make/conf/jib-profiles.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1153,9 +1153,9 @@ var getJibProfilesDependencies = function (input, common) {
11531153
jtreg: {
11541154
server: "jpg",
11551155
product: "jtreg",
1156-
version: "7.3.1",
1156+
version: "7.4",
11571157
build_number: "1",
1158-
file: "bundles/jtreg-7.3.1+1.zip",
1158+
file: "bundles/jtreg-7.4+1.zip",
11591159
environment_name: "JT_HOME",
11601160
environment_path: input.get("jtreg", "home_path") + "/bin",
11611161
configure_args: "--with-jtreg=" + input.get("jtreg", "home_path"),

make/conf/version-numbers.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828

2929
DEFAULT_VERSION_FEATURE=17
3030
DEFAULT_VERSION_INTERIM=0
31-
DEFAULT_VERSION_UPDATE=18
31+
DEFAULT_VERSION_UPDATE=19
3232
DEFAULT_VERSION_PATCH=0
3333
DEFAULT_VERSION_EXTRA1=0
3434
DEFAULT_VERSION_EXTRA2=0
3535
DEFAULT_VERSION_EXTRA3=0
36-
DEFAULT_VERSION_DATE=2026-01-20
36+
DEFAULT_VERSION_DATE=2026-04-21
3737
DEFAULT_VERSION_CLASSFILE_MAJOR=61 # "`$EXPR $DEFAULT_VERSION_FEATURE + 44`"
3838
DEFAULT_VERSION_CLASSFILE_MINOR=0
3939
DEFAULT_VERSION_DOCS_API_SINCE=11

make/data/tzdata/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121
# or visit www.oracle.com if you need additional information or have any
2222
# questions.
2323
#
24-
tzdata2025b
24+
tzdata2026a

0 commit comments

Comments
 (0)