summaryrefslogtreecommitdiffstats
path: root/external/meta-qt5/recipes-qt/qt5/qtbase/0017-corelib-Include-sys-types.h-for-uint32_t.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/meta-qt5/recipes-qt/qt5/qtbase/0017-corelib-Include-sys-types.h-for-uint32_t.patch')
-rw-r--r--external/meta-qt5/recipes-qt/qt5/qtbase/0017-corelib-Include-sys-types.h-for-uint32_t.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/external/meta-qt5/recipes-qt/qt5/qtbase/0017-corelib-Include-sys-types.h-for-uint32_t.patch b/external/meta-qt5/recipes-qt/qt5/qtbase/0017-corelib-Include-sys-types.h-for-uint32_t.patch
deleted file mode 100644
index 8ee4c30d..00000000
--- a/external/meta-qt5/recipes-qt/qt5/qtbase/0017-corelib-Include-sys-types.h-for-uint32_t.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 206fb0ffdcbd2ae2278f37d8cfe5c16301312c58 Mon Sep 17 00:00:00 2001
-From: Khem Raj <raj.khem@gmail.com>
-Date: Thu, 6 Dec 2018 11:47:52 -0800
-Subject: [PATCH] corelib: Include sys/types.h for uint32_t
-
-This has been includes indirectly on glibc/linux systems
-via inttypes.h -> stdint.h -> sys/types.h but it breaks on
-musl where this indirect include chain does not exist.
-
-Upstream-Status: Pending
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
----
- src/corelib/global/qnumeric_p.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/corelib/global/qnumeric_p.h b/src/corelib/global/qnumeric_p.h
-index 5f8a124bcc..fe1711cf1b 100644
---- a/src/corelib/global/qnumeric_p.h
-+++ b/src/corelib/global/qnumeric_p.h
-@@ -55,6 +55,7 @@
- #include "QtCore/private/qglobal_p.h"
- #include <cmath>
- #include <limits>
-+#include <sys/types.h>
-
- #if defined(Q_CC_MSVC)
- # include <intrin.h>