diff options
author | Michael Mair-Keimberger <mmk@levelnine.at> | 2024-05-08 20:08:55 +0200 |
---|---|---|
committer | Florian Schmaus <flow@gentoo.org> | 2024-05-08 22:49:38 +0200 |
commit | b0e38ead7b2b02f524e9c1549689f3191f896312 (patch) | |
tree | acd769eb28eb90714b9a3cf8f9982f4590abbda6 /games-strategy | |
parent | dev-libs/libsecp256k1: fix VariableOrderWrong (diff) | |
download | gentoo-b0e38ead7b2b02f524e9c1549689f3191f896312.tar.gz gentoo-b0e38ead7b2b02f524e9c1549689f3191f896312.tar.bz2 gentoo-b0e38ead7b2b02f524e9c1549689f3191f896312.zip |
games-strategy/wesnoth: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'games-strategy')
-rw-r--r-- | games-strategy/wesnoth/files/wesnoth-1.16.8-gcc-13.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/games-strategy/wesnoth/files/wesnoth-1.16.8-gcc-13.patch b/games-strategy/wesnoth/files/wesnoth-1.16.8-gcc-13.patch deleted file mode 100644 index f2d79ba6ad06..000000000000 --- a/games-strategy/wesnoth/files/wesnoth-1.16.8-gcc-13.patch +++ /dev/null @@ -1,32 +0,0 @@ -https://github.com/wesnoth/wesnoth/commit/5fa07ea15c1736f74d89786d5ae449ed0f91c8a8 - -From 5fa07ea15c1736f74d89786d5ae449ed0f91c8a8 Mon Sep 17 00:00:00 2001 -From: Martin Liska <mliska@suse.cz> -Date: Mon, 23 May 2022 13:44:39 +0200 -Subject: [PATCH] Fix building with GCC 13. - -Fixes the following issue: -base64.hpp:23:49: error: 'uint8_t' was not declared in this scope - -and: -deprecation.hpp:20:22: error: found ':' in nested-name-specifier, expected '::' ---- a/src/deprecation.hpp -+++ b/src/deprecation.hpp -@@ -14,6 +14,7 @@ - - #pragma once - -+#include <cstdint> - #include <string> - - /** See https://wiki.wesnoth.org/CompatibilityStandards for more info. */ ---- a/src/serialization/base64.hpp -+++ b/src/serialization/base64.hpp -@@ -15,6 +15,7 @@ - - #pragma once - -+#include <cstdint> - #include <string_view> - #include <vector> - |