mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: openjdk10: Add patches to fix build.
* gnu/packages/patches/openjdk-10-pointer-comparison.patch, gnu/packages/patches/openjdk-10-setsignalhandler.patch: New files. * gnu/local.mk (dist_patch_DATA): Register patches. * gnu/packages/java.scm (openjdk10)[origin]: Use patches.
This commit is contained in:
parent
b7c8a69fd8
commit
a0cf2bb5f1
4 changed files with 44 additions and 1 deletions
14
gnu/packages/patches/openjdk-10-pointer-comparison.patch
Normal file
14
gnu/packages/patches/openjdk-10-pointer-comparison.patch
Normal file
|
@ -0,0 +1,14 @@
|
|||
Patch inspired by file comparison with openjdk@19.
|
||||
|
||||
diff -u -r openjdk-10.alt/src/hotspot/os/linux/os_linux.cpp openjdk-10/src/hotspot/os/linux/os_linux.cpp
|
||||
--- openjdk-10.alt/src/hotspot/os/linux/os_linux.cpp 2023-04-05 15:02:56.994779480 +0200
|
||||
+++ openjdk-10/src/hotspot/os/linux/os_linux.cpp 2023-04-05 15:07:47.267537301 +0200
|
||||
@@ -2155,7 +2155,7 @@
|
||||
}
|
||||
|
||||
p = OSContainer::cpu_cpuset_memory_nodes();
|
||||
- if (p < 0)
|
||||
+ if (p == NULL)
|
||||
st->print("cpu_memory_nodes() failed\n");
|
||||
else {
|
||||
st->print("cpu_memory_nodes: %s\n", p);
|
Loading…
Add table
Add a link
Reference in a new issue