6783ab9f47
This updates OpenJDK 8 to a newer version and brings a bunch of changes. Newly, it is bootstrapped with openjdk7-bootstrap, so it does not need to download binaries. It can also cross-compile and is patched for musl and other platforms. We're newly using the aarch64 port repo in order to get aarch64 JIT. For non-aarch64 platforms, the codebase is the same. The symlink for /usr/lib/jvm/openjdk is also now gone and we're using a unified java-VERSION-VENDOR naming. Also general template cleanup. [ci skip]
20 lines
503 B
Diff
20 lines
503 B
Diff
--- openjdk.orig/jdk/src/solaris/native/sun/xawt/XToolkit.c
|
|
+++ openjdk/jdk/src/solaris/native/sun/xawt/XToolkit.c
|
|
@@ -27,7 +27,7 @@
|
|
#include <X11/Xutil.h>
|
|
#include <X11/Xos.h>
|
|
#include <X11/Xatom.h>
|
|
-#ifdef __linux__
|
|
+#if defined(__linux__) && defined(__GLIBC__) && ! defined(__UCLIBC__)
|
|
#include <execinfo.h>
|
|
#endif
|
|
|
|
@@ -689,7 +689,7 @@
|
|
return ret;
|
|
}
|
|
|
|
-#ifdef __linux__
|
|
+#if defined(__linux__) && defined(__GLIBC__) && ! defined(__UCLIBC__)
|
|
void print_stack(void)
|
|
{
|
|
void *array[10];
|