summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qtbase/0018-input-Make-use-of-timeval-portable-for-64bit-time_t.patch
diff options
context:
space:
mode:
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