summaryrefslogtreecommitdiff
path: root/legacy/openjdk7/icedtea-jdk-execinfo.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-07-23 19:11:15 +0000
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-07-23 19:11:15 +0000
commit0273b68c9ce66484512d810a98e8a4551e889e1e (patch)
treee35278030dc7b5b246138bb17fe728ab1f4190f7 /legacy/openjdk7/icedtea-jdk-execinfo.patch
parent2a532cb81b163020b1b3348e227b9108a4e5be5f (diff)
downloadpackages-0273b68c9ce66484512d810a98e8a4551e889e1e.tar.gz
packages-0273b68c9ce66484512d810a98e8a4551e889e1e.tar.bz2
packages-0273b68c9ce66484512d810a98e8a4551e889e1e.tar.xz
packages-0273b68c9ce66484512d810a98e8a4551e889e1e.zip
user/openjdk7: move to legacy, only useful for BSing jdk8
Diffstat (limited to 'legacy/openjdk7/icedtea-jdk-execinfo.patch')
-rw-r--r--legacy/openjdk7/icedtea-jdk-execinfo.patch40
1 files changed, 40 insertions, 0 deletions
diff --git a/legacy/openjdk7/icedtea-jdk-execinfo.patch b/legacy/openjdk7/icedtea-jdk-execinfo.patch
new file mode 100644
index 000000000..a6499dcb0
--- /dev/null
+++ b/legacy/openjdk7/icedtea-jdk-execinfo.patch
@@ -0,0 +1,40 @@
+--- openjdk.orig/jdk/src/solaris/native/sun/awt/awt_xembed_server.c
++++ openjdk/jdk/src/solaris/native/sun/awt/awt_xembed_server.c
+@@ -35,7 +35,7 @@
+ #include <X11/Xlib.h>
+ #include <X11/Xatom.h>
+ #include <Xm/MwmUtil.h>
+-#ifdef __linux__
++#if defined(__linux__) && defined(__GLIBC__) && ! defined(__UCLIBC__)
+ #include <execinfo.h>
+ #endif
+ #include <stdio.h>
+@@ -835,7 +835,7 @@
+ AWT_UNLOCK();
+ }
+
+-#ifdef __linux__
++#if defined(__linux__) && defined(__GLIBC__) && ! defined(__UCLIBC__)
+ void
+ print_stack (void)
+ {
+--- 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];