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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
https://bugs.gentoo.org/938531
https://github.com/xbmc/xbmc/pull/25735
From 75e7b25883af5d2c8c89dbe6d830a5c17e9452f2 Mon Sep 17 00:00:00 2001
From: Alfred Wingate <parona@protonmail.com>
Date: Sat, 14 Sep 2024 13:46:25 +0300
Subject: [PATCH] Include missing <cstdint> includes
* GCC-15 stopped implicitly including it.
Signed-off-by: Alfred Wingate <parona@protonmail.com>
--- a/xbmc/ContextMenuItem.h
+++ b/xbmc/ContextMenuItem.h
@@ -8,6 +8,7 @@
#pragma once
+#include <cstdint>
#include <map>
#include <memory>
#include <string>
--- a/xbmc/addons/AddonManager.h
+++ b/xbmc/addons/AddonManager.h
@@ -11,6 +11,7 @@
#include "threads/CriticalSection.h"
#include "utils/EventStream.h"
+#include <cstdint>
#include <map>
#include <memory>
#include <mutex>
--- a/xbmc/addons/IAddon.h
+++ b/xbmc/addons/IAddon.h
@@ -8,6 +8,7 @@
#pragma once
+#include <cstdint>
#include <map>
#include <memory>
#include <string>
--- a/xbmc/cores/RetroPlayer/streams/RetroPlayerVideo.h
+++ b/xbmc/cores/RetroPlayer/streams/RetroPlayerVideo.h
@@ -11,6 +11,8 @@
#include "IRetroPlayerStream.h"
#include "cores/RetroPlayer/RetroPlayerTypes.h"
+#include <cstdint>
+
extern "C"
{
#include <libavutil/pixfmt.h>
--- a/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/ConversionMatrix.h
+++ b/xbmc/cores/VideoPlayer/VideoRenderers/VideoShaders/ConversionMatrix.h
@@ -10,6 +10,7 @@
#include <array>
#include <cmath>
+#include <cstdint>
#include <memory>
extern "C" {
--- a/xbmc/guilib/FFmpegImage.h
+++ b/xbmc/guilib/FFmpegImage.h
@@ -9,6 +9,8 @@
#pragma once
#include "iimage.h"
+
+#include <cstdint>
#include <memory>
extern "C"
--- a/xbmc/input/keymaps/remote/IRTranslator.h
+++ b/xbmc/input/keymaps/remote/IRTranslator.h
@@ -8,6 +8,7 @@
#pragma once
+#include <cstdint>
#include <map>
#include <memory>
#include <string>
--- a/xbmc/messaging/ThreadMessage.h
+++ b/xbmc/messaging/ThreadMessage.h
@@ -8,6 +8,7 @@
#pragma once
+#include <cstdint>
#include <memory>
#include <string>
#include <utility>
--- a/xbmc/settings/AdvancedSettings.h
+++ b/xbmc/settings/AdvancedSettings.h
@@ -13,6 +13,7 @@
#include "settings/lib/ISettingsHandler.h"
#include "utils/SortUtils.h"
+#include <cstdint>
#include <set>
#include <string>
#include <utility>
--- a/xbmc/utils/Archive.h
+++ b/xbmc/utils/Archive.h
@@ -8,6 +8,7 @@
#pragma once
+#include <cstdint>
#include <cstring>
#include <memory>
#include <string>
--
2.46.0
|