Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package java-16-openjdk for openSUSE:Factory checked in at 2021-09-20 23:33:25 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/java-16-openjdk (Old) and /work/SRC/openSUSE:Factory/.java-16-openjdk.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "java-16-openjdk" Mon Sep 20 23:33:25 2021 rev:10 rq:920318 version:16.0.2.0 Changes: -------- --- /work/SRC/openSUSE:Factory/java-16-openjdk/java-16-openjdk.changes 2021-07-22 22:44:21.131122249 +0200 +++ /work/SRC/openSUSE:Factory/.java-16-openjdk.new.1899/java-16-openjdk.changes 2021-09-20 23:36:14.699402756 +0200 @@ -1,0 +2,7 @@ +Thu Aug 26 13:45:59 UTC 2021 - Fridrich Strba <fst...@suse.com> + +- Added patch: + * openjdk-glibc234.patch + + fix build with glibc-2.34 (bsc#1189201) + +------------------------------------------------------------------- New: ---- openjdk-glibc234.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ java-16-openjdk.spec ++++++ --- /var/tmp/diff_new_pack.hDGyjU/_old 2021-09-20 23:36:15.815404134 +0200 +++ /var/tmp/diff_new_pack.hDGyjU/_new 2021-09-20 23:36:15.819404139 +0200 @@ -208,6 +208,8 @@ Patch13: implicit-pointer-decl.patch Patch15: system-pcsclite.patch # +Patch17: openjdk-glibc234.patch +# Patch20: loadAssistiveTechnologies.patch # # OpenJDK specific patches @@ -489,6 +491,8 @@ %patch15 -p1 %endif +%patch17 -p1 + %patch20 -p1 # s390 build fixes ++++++ openjdk-glibc234.patch ++++++ --- openjdk/test/hotspot/jtreg/runtime/StackGuardPages/exeinvoke.c 2021-04-09 11:36:58.000000000 +0200 +++ openjdk/test/hotspot/jtreg/runtime/StackGuardPages/exeinvoke.c 2021-08-26 15:42:52.326232581 +0200 @@ -67,8 +67,17 @@ longjmp(context, 1); } +static char* altstack = NULL; + void set_signal_handler() { - static char altstack[SIGSTKSZ]; + if (altstack == NULL) { + // Dynamically allocated in case SIGSTKSZ is not constant + altstack = malloc(SIGSTKSZ); + if (altstack == NULL) { + fprintf(stderr, "Test ERROR. Unable to malloc altstack space\n"); + exit(7); + } + } stack_t ss = { .ss_size = SIGSTKSZ,