From 4668ec8a9bbbe110ed5e08be8dca7a28b564d06d Mon Sep 17 00:00:00 2001 From: Will Wagner Date: Wed, 4 Mar 2015 14:01:59 +0000 Subject: qt5: bump version to 5.4.1 Also remove all patches that have been applied to 5.4.1 branch Signed-off-by: Will Wagner Signed-off-by: Thomas Petazzoni --- ...lify-use-of-__has_include-in-qlogging.cpp.patch | 54 ---------------------- 1 file changed, 54 deletions(-) delete mode 100644 package/qt5/qt5base/0001-Simplify-use-of-__has_include-in-qlogging.cpp.patch (limited to 'package/qt5/qt5base/0001-Simplify-use-of-__has_include-in-qlogging.cpp.patch') diff --git a/package/qt5/qt5base/0001-Simplify-use-of-__has_include-in-qlogging.cpp.patch b/package/qt5/qt5base/0001-Simplify-use-of-__has_include-in-qlogging.cpp.patch deleted file mode 100644 index d54ef79404..0000000000 --- a/package/qt5/qt5base/0001-Simplify-use-of-__has_include-in-qlogging.cpp.patch +++ /dev/null @@ -1,54 +0,0 @@ -0002-logging-Fix-build-with-uClibc.patch depends on this upstream patch. - -Signed-off-by: Fatih Aşıcı - -From d1d3c36e876464a9bae42565f086ded268ab5118 Mon Sep 17 00:00:00 2001 -From: Thiago Macieira -Date: Wed, 17 Dec 2014 20:24:04 -0800 -Subject: [PATCH] Simplify use of __has_include in qlogging.cpp - -Easier to just #define it to 0 - -Change-Id: Ife99fdca6564077762fa67c6d7a5becaf48655d8 -Reviewed-by: Olivier Goffart ---- - src/corelib/global/qlogging.cpp | 21 +++++++++------------ - 1 file changed, 9 insertions(+), 12 deletions(-) - -diff --git a/src/corelib/global/qlogging.cpp b/src/corelib/global/qlogging.cpp -index 0271573..50d35a6 100644 ---- a/src/corelib/global/qlogging.cpp -+++ b/src/corelib/global/qlogging.cpp -@@ -72,20 +72,17 @@ - # include "private/qcore_unix_p.h" - #endif - --#if !defined QT_NO_REGULAREXPRESSION && !defined(QT_BOOTSTRAPPED) --#ifdef __has_include --#if __has_include() && __has_include() --#define QLOGGING_HAVE_BACKTRACE --#endif --#elif defined(__GLIBCXX__) && defined(__GLIBC__) // (because older version of gcc don't have __has_include) --#define QLOGGING_HAVE_BACKTRACE -+#ifndef __has_include -+# define __has_include(x) 0 - #endif - --#ifdef QLOGGING_HAVE_BACKTRACE --#include --#include --#include --#endif -+#if !defined QT_NO_REGULAREXPRESSION && !defined(QT_BOOTSTRAPPED) -+# if (defined(__GLIBC__) && defined(__GLIBCXX__)) || (__has_include() && __has_include()) -+# define QLOGGING_HAVE_BACKTRACE -+# include -+# include -+# include -+# endif - #endif - - #include --- -1.9.1 - -- cgit v1.2.3