summaryrefslogtreecommitdiff
path: root/devel/qt4/files/extrapatch-armv6
diff options
context:
space:
mode:
Diffstat (limited to 'devel/qt4/files/extrapatch-armv6')
-rw-r--r--devel/qt4/files/extrapatch-armv628
1 files changed, 0 insertions, 28 deletions
diff --git a/devel/qt4/files/extrapatch-armv6 b/devel/qt4/files/extrapatch-armv6
deleted file mode 100644
index b054d7135036..000000000000
--- a/devel/qt4/files/extrapatch-armv6
+++ /dev/null
@@ -1,28 +0,0 @@
-Due to a misspelling in GCC [1] (probably) the check for the ARMv6KZ platform
-used __ARM_ARCH_6ZK__ instead of __ARM_ARCH_6KZ__.
-
-Append the correct spellings to the checks for __ARM_ARCH_6ZK__.
-
-
-[1] https://gcc.gnu.org/ml/gcc-patches/2015-06/msg01679.html
-
---- src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h.orig 2017-06-02 20:01:34.860331000 +0200
-+++ src/3rdparty/javascriptcore/JavaScriptCore/wtf/Platform.h 2017-06-02 20:02:08.715222000 +0200
-@@ -254,6 +254,7 @@
- #elif defined(__ARM_ARCH_6__) \
- || defined(__ARM_ARCH_6J__) \
- || defined(__ARM_ARCH_6K__) \
-+ || defined(__ARM_ARCH_6KZ__) \
- || defined(__ARM_ARCH_6Z__) \
- || defined(__ARM_ARCH_6ZK__) \
- || defined(__ARM_ARCH_6T2__) \
---- src/corelib/arch/qatomic_arm.h.orig 2017-06-02 20:02:52.633112000 +0200
-+++ src/corelib/arch/qatomic_arm.h 2017-06-02 20:03:14.263677000 +0200
-@@ -57,6 +57,7 @@
- || defined(__ARM_ARCH_6T2__) \
- || defined(__ARM_ARCH_6Z__) \
- || defined(__ARM_ARCH_6K__) \
-+ || defined(__ARM_ARCH_6KZ__) \
- || defined(__ARM_ARCH_6ZK__) \
- || defined(__ARM_ARCH_6M__) \
- || (defined(__TARGET_ARCH_ARM) && (__TARGET_ARCH_ARM-0 >= 6))