summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2015-11-15 21:55:03 +0100
committerPacho Ramos <pacho@gentoo.org>2015-11-15 22:03:00 +0100
commit6b63044f12f41934600e316a793344ca97810e9b (patch)
tree2528d18b742456bdda87aed1970600b44795ac8a /net-libs/webkit-gtk/files
parentnet-libs/webkit-gtk: Version bump (diff)
downloadgentoo-6b63044f12f41934600e316a793344ca97810e9b.tar.gz
gentoo-6b63044f12f41934600e316a793344ca97810e9b.tar.bz2
gentoo-6b63044f12f41934600e316a793344ca97810e9b.zip
net-libs/webkit-gtk: Drop old
Package-Manager: portage-2.2.24
Diffstat (limited to 'net-libs/webkit-gtk/files')
-rw-r--r--net-libs/webkit-gtk/files/webkit-gtk-2.6.0-hppa-platform.patch34
-rw-r--r--net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-malloc.patch31
-rw-r--r--net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-platform.patch26
-rw-r--r--net-libs/webkit-gtk/files/webkit-gtk-2.8.1-ia64-malloc.patch31
4 files changed, 0 insertions, 122 deletions
diff --git a/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-hppa-platform.patch b/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-hppa-platform.patch
deleted file mode 100644
index 06235829395c..000000000000
--- a/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-hppa-platform.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 8ba68225e9ad35958197aacc03a7a1716741b14c Mon Sep 17 00:00:00 2001
-From: Gilles Dartiguelongue <eva@gentoo.org>
-Date: Sun, 19 Oct 2014 19:37:40 +0200
-Subject: [PATCH 1/4] Fix support for HPPA
-
-Debian patches to fix support for some arches
-https://bugs.webkit.org/show_bug.cgi?id=129540
----
- Source/WTF/wtf/Platform.h | 9 +++++++++
- 1 file changed, 9 insertions(+)
-
-diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h
-index 7712ddb..65f1379 100644
---- a/Source/WTF/wtf/Platform.h
-+++ b/Source/WTF/wtf/Platform.h
-@@ -71,6 +71,15 @@
- #define WTF_CPU_BIG_ENDIAN 1
- #endif
-
-+/* CPU(HPPA) - HP PARISC */
-+#if defined(__hppa__)
-+#define WTF_CPU_HPPA 1
-+#define WTF_CPU_BIG_ENDIAN 1
-+#define ENABLE_JIT 0
-+#define ENABLE_YARR_JIT 0
-+#define ENABLE_ASSEMBLER 0
-+#endif
-+
- /* CPU(IA64) - Itanium / IA-64 */
- #if defined(__ia64__)
- #define WTF_CPU_IA64 1
---
-2.1.2
-
diff --git a/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-malloc.patch b/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-malloc.patch
deleted file mode 100644
index 0b7808bd1ace..000000000000
--- a/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-malloc.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 9348d1c7fbbd9fcbb1702c0c6d81c723ec0b6879 Mon Sep 17 00:00:00 2001
-From: Gilles Dartiguelongue <eva@gentoo.org>
-Date: Sun, 19 Oct 2014 19:40:21 +0200
-Subject: [PATCH 3/4] Use system malloc for IA64
-
-https://bugs.webkit.org/show_bug.cgi?id=129542
----
- Source/WTF/wtf/Platform.h | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h
-index d9afcd7..c4cf1d2 100644
---- a/Source/WTF/wtf/Platform.h
-+++ b/Source/WTF/wtf/Platform.h
-@@ -662,6 +662,13 @@
- #endif
- #endif /* !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32_64) */
-
-+/* FIXME: The fast malloc implementation is broken on Itanium / IA64 because
-+ some memory barriers are missing in the thread-unsafe code around the
-+ pagemap_cache_ object. */
-+#if CPU(IA64) || CPU(IA64_32)
-+#define USE_SYSTEM_MALLOC 1
-+#endif
-+
- /* The JIT is enabled by default on all x86, x86-64, ARM & MIPS platforms except ARMv7k and Windows. */
- #if !defined(ENABLE_JIT) \
- && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(MIPS)) \
---
-2.1.2
-
diff --git a/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-platform.patch b/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-platform.patch
deleted file mode 100644
index 57587e91fec0..000000000000
--- a/net-libs/webkit-gtk/files/webkit-gtk-2.6.0-ia64-platform.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From d98ac8c1040318e648f8417fa5ca6df66cc00b35 Mon Sep 17 00:00:00 2001
-From: Gilles Dartiguelongue <eva@gentoo.org>
-Date: Sun, 19 Oct 2014 19:38:18 +0200
-Subject: [PATCH 2/4] Fix support for IA64
-
----
- Source/WTF/wtf/Platform.h | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h
-index 65f1379..d9afcd7 100644
---- a/Source/WTF/wtf/Platform.h
-+++ b/Source/WTF/wtf/Platform.h
-@@ -87,6 +87,9 @@
- #if !defined(__LP64__)
- #define WTF_CPU_IA64_32 1
- #endif
-+#define ENABLE_JIT 0
-+#define ENABLE_YARR_JIT 0
-+#define ENABLE_ASSEMBLER 0
- #endif
-
- /* CPU(MIPS) - MIPS 32-bit */
---
-2.1.2
-
diff --git a/net-libs/webkit-gtk/files/webkit-gtk-2.8.1-ia64-malloc.patch b/net-libs/webkit-gtk/files/webkit-gtk-2.8.1-ia64-malloc.patch
deleted file mode 100644
index 57be875e6aae..000000000000
--- a/net-libs/webkit-gtk/files/webkit-gtk-2.8.1-ia64-malloc.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-From 9348d1c7fbbd9fcbb1702c0c6d81c723ec0b6879 Mon Sep 17 00:00:00 2001
-From: Gilles Dartiguelongue <eva@gentoo.org>
-Date: Sun, 19 Oct 2014 19:40:21 +0200
-Subject: [PATCH 3/4] Use system malloc for IA64
-
-https://bugs.webkit.org/show_bug.cgi?id=129542
----
- Source/WTF/wtf/Platform.h | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h
-index d9afcd7..c4cf1d2 100644
---- a/Source/WTF/wtf/Platform.h
-+++ b/Source/WTF/wtf/Platform.h
-@@ -662,6 +662,13 @@
- #endif
- #endif /* !defined(WTF_USE_JSVALUE64) && !defined(WTF_USE_JSVALUE32_64) */
-
-+/* FIXME: The fast malloc implementation is broken on Itanium / IA64 because
-+ some memory barriers are missing in the thread-unsafe code around the
-+ pagemap_cache_ object. */
-+#if CPU(IA64) || CPU(IA64_32)
-+#define USE_SYSTEM_MALLOC 1
-+#endif
-+
- /* The JIT is enabled by default on all x86, x86-64, ARM & MIPS platforms except ARMv7k. */
- #if !defined(ENABLE_JIT) \
- && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(ARM64) || CPU(MIPS)) \
---
-2.1.2
-