forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-games/mygui: fix build w/ gcc 13
Closes: https://bugs.gentoo.org/895098 Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
152cb3a
commit 790927a
Showing
2 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
https://github.com/MyGUI/mygui/pull/249 | ||
|
||
From f97c85b4e096379f728700d61c2f5780043dfc0a Mon Sep 17 00:00:00 2001 | ||
From: Sam James <[email protected]> | ||
Date: Tue, 18 Apr 2023 12:29:08 +0100 | ||
Subject: [PATCH] Fix build with GCC 13 | ||
|
||
GCC 13 (as usual for new compiler releases) shuffles around some internal includes so some | ||
are no longer transitively included. | ||
|
||
See https://gnu.org/software/gcc/gcc-13/porting_to.html. | ||
|
||
Bug: https://bugs.gentoo.org/895098 | ||
--- a/MyGUIEngine/include/MyGUI_Types.h | ||
+++ b/MyGUIEngine/include/MyGUI_Types.h | ||
@@ -9,6 +9,7 @@ | ||
|
||
#include "MyGUI_Prerequest.h" | ||
|
||
+#include <cstdint> | ||
#include <vector> | ||
#include <map> | ||
#include <string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters