From afebed35a19b587729631f5cf922456a34bfb33c Mon Sep 17 00:00:00 2001 From: Peter Kümmel Date: Fri, 14 Feb 2014 16:22:06 +0100 Subject: Qt5: update to 5.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removed patches are now part of the 5.2.1 release. Signed-off-by: Peter Kümmel Acked-by: Fatih Aşıcı Signed-off-by: Thomas Petazzoni --- ...kit-0002-Fix-QtWebKit-build-on-ARM-softfp.patch | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 package/qt5/qt5webkit/qt5webkit-0002-Fix-QtWebKit-build-on-ARM-softfp.patch (limited to 'package/qt5/qt5webkit/qt5webkit-0002-Fix-QtWebKit-build-on-ARM-softfp.patch') diff --git a/package/qt5/qt5webkit/qt5webkit-0002-Fix-QtWebKit-build-on-ARM-softfp.patch b/package/qt5/qt5webkit/qt5webkit-0002-Fix-QtWebKit-build-on-ARM-softfp.patch deleted file mode 100644 index edbfb9059f..0000000000 --- a/package/qt5/qt5webkit/qt5webkit-0002-Fix-QtWebKit-build-on-ARM-softfp.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 8a716a29721d900069d82878c45cf87a356adba3 Mon Sep 17 00:00:00 2001 -From: Allan Sandfeld Jensen -Date: Tue, 17 Dec 2013 12:26:58 +0100 -Subject: [PATCH] Fix QtWebKit build on ARM softfp - -The low level interpreter depends on hardfp, so we need to disable it -when builing on ARM targets with softfp. - -Task-number: QTBUG-35681 -Change-Id: I8aaef546b92182a87cc7116ac452d8725de6a7db -Reviewed-by: Jocelyn Turcotte -Signed-off-by: Fatih Aşıcı ---- - Source/WTF/wtf/Platform.h | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/Source/WTF/wtf/Platform.h b/Source/WTF/wtf/Platform.h -index 3a9b509..cddc210 100644 ---- a/Source/WTF/wtf/Platform.h -+++ b/Source/WTF/wtf/Platform.h -@@ -771,6 +771,11 @@ - #define ENABLE_LLINT 0 - #endif - -+/* LLINT on ARM depends on an FPU */ -+#if !defined(ENABLE_LLINT) && CPU(ARM) && !CPU(ARM_HARDFP) -+#define ENABLE_LLINT 0 -+#endif -+ - /* On some of the platforms where we have a JIT, we want to also have the - low-level interpreter. */ - #if !defined(ENABLE_LLINT) \ --- -1.8.5.1 - -- cgit v1.2.3