summaryrefslogtreecommitdiff
path: root/experimental/openjdk7/icedtea-jdk-execinfo.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2019-02-27 18:40:05 +0000
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2019-02-27 18:40:05 +0000
commit54003d7ae7f86ebba107ddad7ea6be0fdcaa6259 (patch)
tree0a7133751675e0de3c8e45b0e8775f99052a33b8 /experimental/openjdk7/icedtea-jdk-execinfo.patch
parent3bb3a78b53cf0b446af768d5b6dce145c0768f96 (diff)
downloadpackages-54003d7ae7f86ebba107ddad7ea6be0fdcaa6259.tar.gz
packages-54003d7ae7f86ebba107ddad7ea6be0fdcaa6259.tar.bz2
packages-54003d7ae7f86ebba107ddad7ea6be0fdcaa6259.tar.xz
packages-54003d7ae7f86ebba107ddad7ea6be0fdcaa6259.zip
{experimental => user}/openjdk7: new package
Diffstat (limited to 'experimental/openjdk7/icedtea-jdk-execinfo.patch')
-rw-r--r--experimental/openjdk7/icedtea-jdk-execinfo.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/experimental/openjdk7/icedtea-jdk-execinfo.patch b/experimental/openjdk7/icedtea-jdk-execinfo.patch
deleted file mode 100644
index a6499dcb0..000000000
--- a/experimental/openjdk7/icedtea-jdk-execinfo.patch
+++ /dev/null
@@ -1,40 +0,0 @@
---- 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];