summaryrefslogtreecommitdiff
path: root/user/openjdk7/icedtea-hotspot-noagent-musl.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 /user/openjdk7/icedtea-hotspot-noagent-musl.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 'user/openjdk7/icedtea-hotspot-noagent-musl.patch')
-rw-r--r--user/openjdk7/icedtea-hotspot-noagent-musl.patch54
1 files changed, 0 insertions, 54 deletions
diff --git a/user/openjdk7/icedtea-hotspot-noagent-musl.patch b/user/openjdk7/icedtea-hotspot-noagent-musl.patch
deleted file mode 100644
index 37604acca..000000000
--- a/user/openjdk7/icedtea-hotspot-noagent-musl.patch
+++ /dev/null
@@ -1,54 +0,0 @@
---- openjdk.orig/hotspot/make/linux/makefiles/defs.make
-+++ openjdk/hotspot/make/linux/makefiles/defs.make
-@@ -327,6 +327,9 @@
-
- # Serviceability Binaries
- # No SA Support for PPC, IA64, ARM or zero
-+# or if thread_db.h missing (musl)
-+
-+ifneq ($(wildcard /usr/include/thread_db.h),)
- ADD_SA_BINARIES/x86 = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
- $(EXPORT_LIB_DIR)/sa-jdi.jar
- ADD_SA_BINARIES/sparc = $(EXPORT_JRE_LIB_ARCH_DIR)/libsaproc.$(LIBRARY_SUFFIX) \
-@@ -343,6 +346,10 @@
- endif
- endif
- endif
-+endif
-+else
-+ADD_SA_BINARIES/x86 =
-+ADD_SA_BINARIES/sparc =
- endif
- ADD_SA_BINARIES/ppc =
- ADD_SA_BINARIES/ppc64 =
---- openjdk.orig/hotspot/make/linux/makefiles/sa.make
-+++ openjdk/hotspot/make/linux/makefiles/sa.make
-@@ -59,9 +59,11 @@
-
- # if $(AGENT_DIR) does not exist, we don't build SA
- # also, we don't build SA on Itanium or zero.
-+# check for thread_db.h too (musl does not have it).
-
- all:
-- if [ -d $(AGENT_DIR) -a "$(SRCARCH)" != "ia64" \
-+ if [ -d $(AGENT_DIR) -a -f /usr/include/thread_db.h \
-+ -a "$(SRCARCH)" != "ia64" \
- -a "$(SRCARCH)" != "zero" \
- -a "$(SRCARCH)" != "aarch64" ] ; then \
- $(MAKE) -f sa.make $(GENERATED)/sa-jdi.jar; \
---- openjdk.orig/hotspot/make/linux/makefiles/saproc.make
-+++ openjdk/hotspot/make/linux/makefiles/saproc.make
-@@ -65,10 +65,13 @@
-
- # if $(AGENT_DIR) does not exist, we don't build SA
- # also, we don't build SA on Itanium or zero.
-+# check for thread_db.h too (musl does not have it).
-
-+ifneq ($(wildcard /usr/include/thread_db.h),)
- ifneq ($(wildcard $(AGENT_DIR)),)
- ifneq ($(filter-out ia64 zero aarch64,$(SRCARCH)),)
- BUILDLIBSAPROC = $(LIBSAPROC)
-+endif
- endif
- endif
-