Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package java-13-openjdk for openSUSE:Factory 
checked in at 2021-09-20 23:33:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/java-13-openjdk (Old)
 and      /work/SRC/openSUSE:Factory/.java-13-openjdk.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "java-13-openjdk"

Mon Sep 20 23:33:22 2021 rev:3 rq:920315 version:13.0.8.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/java-13-openjdk/java-13-openjdk.changes  
2021-08-12 09:02:21.538084973 +0200
+++ 
/work/SRC/openSUSE:Factory/.java-13-openjdk.new.1899/java-13-openjdk.changes    
    2021-09-20 23:36:11.863399252 +0200
@@ -1,0 +2,7 @@
+Thu Aug 26 13:45:59 UTC 2021 - Fridrich Strba <[email protected]>
+
+- Added patch:
+  * openjdk-glibc234.patch
+    + fix build with glibc-2.34 (bsc#1189201)
+
+-------------------------------------------------------------------

New:
----
  openjdk-glibc234.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ java-13-openjdk.spec ++++++
--- /var/tmp/diff_new_pack.Dz8lVe/_old  2021-09-20 23:36:13.019400680 +0200
+++ /var/tmp/diff_new_pack.Dz8lVe/_new  2021-09-20 23:36:13.023400685 +0200
@@ -207,6 +207,7 @@
 #
 Patch15:        system-pcsclite.patch
 Patch16:        missing-return.patch
+Patch17:        openjdk-glibc234.patch
 #
 Patch20:        loadAssistiveTechnologies.patch
 #
@@ -488,6 +489,7 @@
 %endif
 
 %patch16 -p1
+%patch17 -p1
 
 %patch20 -p1
 

++++++ 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,

Reply via email to