summaryrefslogtreecommitdiff
path: root/user/qt5-qtwebkit/missing-header.patch
blob: da0eed43c7c71fb620e38352123de4e5d2a5eb92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
The GCC 13 C++ stdlib doesn't include <stdint.h> any more, which is used for uint32_t.
--- qtwebkit-opensource-src-5.212/Source/ThirdParty/ANGLE/src/common/mathutil.h.old	2020-09-22 06:30:04.000000000 -0500
+++ qtwebkit-opensource-src-5.212/Source/ThirdParty/ANGLE/src/common/mathutil.h	2024-05-27 14:43:22.625301664 -0500
@@ -14,6 +14,7 @@
 
 #include <limits>
 #include <algorithm>
+#include <stdint.h>
 #include <string.h>
 #include <stdlib.h>