summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Schmaus <flow@gentoo.org>2023-04-20 16:02:32 +0200
committerFlorian Schmaus <flow@gentoo.org>2023-04-20 16:08:08 +0200
commit96ed9bb0c9c737e40f1400afc18f4fd09a66d5cc (patch)
tree97be6389c5bc8f4ff36f4d027565c44c32522ce0 /games-simulation/EmptyEpsilon
parentgames-simulation/EmptyEpsilon: compress SRC_URI using PN (diff)
downloadgentoo-96ed9bb0c9c737e40f1400afc18f4fd09a66d5cc.tar.gz
gentoo-96ed9bb0c9c737e40f1400afc18f4fd09a66d5cc.tar.bz2
gentoo-96ed9bb0c9c737e40f1400afc18f4fd09a66d5cc.zip
games-simulation/EmptyEpsilon: drop unused patch
Signed-off-by: Florian Schmaus <flow@gentoo.org>
Diffstat (limited to 'games-simulation/EmptyEpsilon')
-rw-r--r--games-simulation/EmptyEpsilon/files/SeriousProton-Add-missing-include-memory-to-websocket.h.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/games-simulation/EmptyEpsilon/files/SeriousProton-Add-missing-include-memory-to-websocket.h.patch b/games-simulation/EmptyEpsilon/files/SeriousProton-Add-missing-include-memory-to-websocket.h.patch
deleted file mode 100644
index 861eaa781e8f..000000000000
--- a/games-simulation/EmptyEpsilon/files/SeriousProton-Add-missing-include-memory-to-websocket.h.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 9fe127233eae44f14e37900c3f54e8a305d2f161 Mon Sep 17 00:00:00 2001
-From: Florian Schmaus <flo@geekplace.eu>
-Date: Sun, 22 May 2022 12:36:08 +0200
-Subject: [PATCH] Add missing #include <memory> to websocket.h
-
-std::unique_ptr, which is used for the 'socket' field, is defined in
-<memory> but currently not included. Starting with GCC 12, the missing
-include will cause a compilation error.
-
-The missing include was found by Gentoo's CI and reported as
-https://bugs.gentoo.org/846935
---- a/src/io/http/websocket.h
-+++ b/src/io/http/websocket.h
-@@ -5,6 +5,9 @@
- #include <io/network/tcpSocket.h>
- #include <unordered_map>
-
-+#ifndef EMSCRIPTEN
-+#include <memory>
-+#endif
-
- namespace sp {
- namespace io {