summaryrefslogtreecommitdiff
path: root/x11-misc/synergy/files/synergy-1.14.1.32-gcc13.patch
blob: 655199f4b04a0e30365292b0ae5636a2e18a34f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
https://bugs.gentoo.org/898032
https://github.com/symless/synergy-core/commit/ab8a7b5ed44a3aeadc7a20f0e4020d47ac258e14

From ab8a7b5ed44a3aeadc7a20f0e4020d47ac258e14 Mon Sep 17 00:00:00 2001
From: Sergei Trofimovich <slyich@gmail.com>
Date: Thu, 8 Dec 2022 09:16:44 +0000
Subject: [PATCH] add missing <cstdint> includes for SIZE_MAX (#7237)

Without the change the build on upcoming `gcc-13` ails as:

    src/lib/base/Log.cpp: In member function 'void Log::print(const char*, int, const char*, ...)':
    src/lib/base/Log.cpp:128:23:
      error: 'SIZE_MAX' was not declared in this scope
      128 |     if ((strnlen(fmt, SIZE_MAX) > 2) && (fmt[0] == '%' && fmt[1] == 'z')) {
          |                       ^~~~~~~~
    src/lib/base/Log.cpp:30:1:
      note: 'SIZE_MAX' is defined in header '<cstdint>'; did you forget to '#include <cstdint>'?
       29 | #include <ctime>
      +++ |+#include <cstdint>
       30 |

gcc-13 cleaned it's header dependencies and that exposes these failures.
--- a/src/lib/base/Log.cpp
+++ b/src/lib/base/Log.cpp
@@ -23,10 +23,11 @@
 #include "base/log_outputters.h"
 #include "common/Version.h"
 
+#include <cstdint>
 #include <cstdio>
 #include <cstring>
 #include <iostream>
-#include <ctime> 
+#include <ctime>
 
 // names of priorities
 static const char*        g_priority[] = {
--- a/src/lib/base/String.cpp
+++ b/src/lib/base/String.cpp
@@ -21,6 +21,7 @@
 #include "common/stdvector.h"
 
 #include <cctype>
+#include <cstdint>
 #include <cstdio>
 #include <cstdlib>
 #include <cstring>
--- a/src/lib/synergy/IKeyState.cpp
+++ b/src/lib/synergy/IKeyState.cpp
@@ -19,6 +19,7 @@
 #include "synergy/IKeyState.h"
 #include "base/EventQueue.h"
 
+#include <cstdint>
 #include <cstring>
 #include <cstdlib>