diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2018-02-22 14:15:12 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2018-02-26 16:53:07 +0000 |
commit | 1d9fbb1576846318e6f842006bf8c27758f094fb (patch) | |
tree | 772f2b404ce6bb3c7c06bd381ccc72aa3efa741e /recipes-qt/qt5/qtserialbus/0001-Add-missing-include-for-struct-timeval.patch | |
parent | a5aadb7a92558ea33833a189cc6b6fd1019c2a5b (diff) | |
download | meta-qt5-1d9fbb1576846318e6f842006bf8c27758f094fb.tar.gz |
qt5: refresh patches from meta-qt5/qt* repos
* apply:
0012-mkspecs-common-gcc-base.conf-Use-I-instead-of-isyste.patch
also for nativesdk-qtbase as the comment says
* drop unused:
0001-Add-missing-include-for-struct-timeval.patch
which wasn't removed in 5.10.1 upgrade
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-qt/qt5/qtserialbus/0001-Add-missing-include-for-struct-timeval.patch')
-rw-r--r-- | recipes-qt/qt5/qtserialbus/0001-Add-missing-include-for-struct-timeval.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/recipes-qt/qt5/qtserialbus/0001-Add-missing-include-for-struct-timeval.patch b/recipes-qt/qt5/qtserialbus/0001-Add-missing-include-for-struct-timeval.patch deleted file mode 100644 index 519749ec..00000000 --- a/recipes-qt/qt5/qtserialbus/0001-Add-missing-include-for-struct-timeval.patch +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | From 3c9a3e3bdb220c6aacee1db04a3f997e08dab161 Mon Sep 17 00:00:00 2001 | ||
2 | From: Samuli Piippo <samuli.piippo@qt.io> | ||
3 | Date: Mon, 11 Dec 2017 14:39:34 +0200 | ||
4 | Subject: [PATCH] Add missing include for struct timeval | ||
5 | |||
6 | Fix build failure with musl libc: | ||
7 | socketcanbackend.h:88:38: error: 'timeval' was not declared in this scope | ||
8 | |||
9 | Change-Id: I4089f5a906095c21b2790d35ad131d9a0713ff3b | ||
10 | --- | ||
11 | src/plugins/canbus/socketcan/socketcanbackend.h | 1 + | ||
12 | 1 file changed, 1 insertion(+) | ||
13 | |||
14 | diff --git a/src/plugins/canbus/socketcan/socketcanbackend.h b/src/plugins/canbus/socketcan/socketcanbackend.h | ||
15 | index 50976b1..b49d267 100644 | ||
16 | --- a/src/plugins/canbus/socketcan/socketcanbackend.h | ||
17 | +++ b/src/plugins/canbus/socketcan/socketcanbackend.h | ||
18 | @@ -50,6 +50,7 @@ | ||
19 | #include <sys/socket.h> | ||
20 | #include <sys/uio.h> | ||
21 | #include <linux/can.h> | ||
22 | +#include <sys/time.h> | ||
23 | |||
24 | QT_BEGIN_NAMESPACE | ||
25 | |||