aboutsummaryrefslogtreecommitdiffstats
path: root/main/openjdk6/icedtea-jdk-execinfo.patch
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2014-04-15 10:40:02 +0000
committerTimo Teräs <timo.teras@iki.fi>2014-04-15 10:40:02 +0000
commitbb62ff0be2acc91f2a2ed37e0314f0088684aef3 (patch)
treebba68b9f342d5852cab856d978bc9543b8e182db /main/openjdk6/icedtea-jdk-execinfo.patch
parent3ef61caf02705593434b656b0ad7c65fee0d72c1 (diff)
downloadaports-bb62ff0be2acc91f2a2ed37e0314f0088684aef3.tar.bz2
aports-bb62ff0be2acc91f2a2ed37e0314f0088684aef3.tar.xz
main/openjdk6: remove as superceded by openjdk7
Diffstat (limited to 'main/openjdk6/icedtea-jdk-execinfo.patch')
-rw-r--r--main/openjdk6/icedtea-jdk-execinfo.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/main/openjdk6/icedtea-jdk-execinfo.patch b/main/openjdk6/icedtea-jdk-execinfo.patch
deleted file mode 100644
index a6499dcb03..0000000000
--- a/main/openjdk6/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];