summaryrefslogtreecommitdiff
path: root/media-libs/opencollada/files/opencollada-1.6.68-gcc13.patch
blob: e12771ca97a4fca94a1652107a719d831195e8e2 (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
https://bugs.gentoo.org/899750
https://github.com/KhronosGroup/OpenCOLLADA/pull/656

From 84c8c9a02b4e5fe40465034563cb36527e865dac Mon Sep 17 00:00:00 2001
From: Sergei Trofimovich <slyich@gmail.com>
Date: Mon, 11 Jul 2022 21:33:11 +0100
Subject: [PATCH] DAEValidator: fix gcc-13 build

On gcc-13 c++ headers don't include <stdint.h> implicitly any more.
This exposed build failure as:

    /build/source/DAEValidator/library/src/XmlDoc.cpp: In member function 'virtual void opencollada::XmlDoc::readFile(const std::string&)':
    /build/source/DAEValidator/library/src/XmlDoc.cpp:59:17: error: 'uint32_t' was not declared in this scope
       59 |                 uint32_t signature = *reinterpret_cast<const uint32_t*>(content.data());
          |                 ^~~~~~~~
--- a/DAEValidator/library/src/DaeValidator.cpp
+++ b/DAEValidator/library/src/DaeValidator.cpp
@@ -4,6 +4,7 @@
 #include "Strings.h"
 #include "StringUtil.h"
 #include <cmath>
+#include <cstdint>
 #include "no_warning_iomanip"
 #include "no_warning_iostream"
 #include <set>
--- a/DAEValidator/library/src/XmlDoc.cpp
+++ b/DAEValidator/library/src/XmlDoc.cpp
@@ -1,5 +1,6 @@
 #include "Macros.h"
 
+#include <cstdint>
 #if IS_GNUC_AND_GNUC_VERSION_LT(5,1,1)
 #include <cstring>
 #endif