summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch
diff options
context:
space:
mode:
authorMikko Gronoff <mikko.gronoff@qt.io>2020-01-12 20:25:55 +0200
committerMikko Gronoff <mikko.gronoff@qt.io>2020-01-12 20:26:34 +0200
commit5b2109a88ee8e8a769190e640661434d98b62548 (patch)
tree13ec544f89bf10755025c683470a42f29f0f186d /recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch
parente4e2acba9fe7e6c5903770b26ae374b74051d91c (diff)
parent25039161c1646ce1b6cc30303d4588e43b9b714a (diff)
downloadmeta-qt5-5b2109a88ee8e8a769190e640661434d98b62548.tar.gz
Merge remote-tracking branch 'qt/upstream/master' into 5.14
Notes: - Patch already present in 5.14 branch for qtwebengine musl build kept and upstream one (1a4ee018 qtwebengine: Fix musl build) discarded as that does not work with present content - Patch for time_t in qtbase (f6ad80f9 qtbase: Fix build on 32bit arches with 64bit time_t) is faulty, fixed in next commit * qt/upstream/master: 25039161 qtwebengine: Fix build with 64bit time_t on 32bit architectures 4f3ed3ed qtwebkit: add missing flex-native dep 456ec4ac qt5-creator, qtbase: Replace python with python3 f264e5dd qtdeclarative: Ask for python3 explicitly f6ad80f9 qtbase: Fix build on 32bit arches with 64bit time_t b7f4bd20 recipes: Use features_check instead of distro_features_check 1a4ee018 qtwebengine: Fix musl build 02715fff pyqt5: Upgrade to 5.13.2 Conflicts: recipes-qt/qt5/qtdeclarative_git.bb recipes-qt/qt5/qtwebengine_git.bb Change-Id: I650cc667ede8f68f85164f52835b5e9f8db213f5
Diffstat (limited to 'recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch')
-rw-r--r--recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch62
1 files changed, 62 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch b/recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch
new file mode 100644
index 00000000..76b4671c
--- /dev/null
+++ b/recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch
@@ -0,0 +1,62 @@
1From e06ac2e26c8490a7b8702e9462d1f38244ac3f0f Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Mon, 25 Nov 2019 08:27:39 -0800
4Subject: [PATCH] input: Make use of timeval portable for 64bit time_t
5
6This patch avoids using time field of input_event structure which is not available
7on 32bit arches supporting 64bit time_t structs, Patch makes it compatible with new
8and keeps old input.h implementation functional as well.
9
10See https://sourceware.org/glibc/wiki/Y2038ProofnessDesign
11
12Upstream-Status: Submitted [https://codereview.qt-project.org/c/qt/qtbase/+/282610]
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 .../input/evdevkeyboard/qevdevkeyboardhandler.cpp | 10 +++++++++-
16 .../input/evdevtouch/qevdevtouchhandler.cpp | 2 +-
17 2 files changed, 10 insertions(+), 2 deletions(-)
18
19diff --git a/src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp b/src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp
20index 666613f09d..0e3e0ea0de 100644
21--- a/src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp
22+++ b/src/platformsupport/input/evdevkeyboard/qevdevkeyboardhandler.cpp
23@@ -58,6 +58,11 @@
24 #include <linux/input.h>
25 #endif
26
27+#ifndef input_event_sec
28+#define input_event_sec time.tv_sec
29+#define input_event_usec time.tv_usec
30+#endif
31+
32 QT_BEGIN_NAMESPACE
33
34 Q_LOGGING_CATEGORY(qLcEvdevKey, "qt.qpa.input")
35@@ -149,7 +154,10 @@ void QEvdevKeyboardHandler::switchLed(int led, bool state)
36 qCDebug(qLcEvdevKey) << "switchLed" << led << state;
37
38 struct ::input_event led_ie;
39- ::gettimeofday(&led_ie.time, 0);
40+ struct timeval tval;
41+ ::gettimeofday(&tval, 0);
42+ led_ie.input_event_sec = tval.tv_sec;
43+ led_ie.input_event_usec = tval.tv_usec;
44 led_ie.type = EV_LED;
45 led_ie.code = led;
46 led_ie.value = state;
47diff --git a/src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp b/src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp
48index f86f80785e..3914698f2a 100644
49--- a/src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp
50+++ b/src/platformsupport/input/evdevtouch/qevdevtouchhandler.cpp
51@@ -568,7 +568,7 @@ void QEvdevTouchScreenData::processInputEvent(input_event *data)
52
53 // update timestamps
54 m_lastTimeStamp = m_timeStamp;
55- m_timeStamp = data->time.tv_sec + data->time.tv_usec / 1000000.0;
56+ m_timeStamp = data->input_event_sec + data->input_event_usec / 1000000.0;
57
58 m_lastTouchPoints = m_touchPoints;
59 m_touchPoints.clear();
60--
612.24.0
62