-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-emulation/lime3ds: fix for Boost 1.87.0
Signed-off-by: Andrew Udvare <[email protected]>
- Loading branch information
Showing
3 changed files
with
28 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
25 changes: 25 additions & 0 deletions
25
games-emulation/lime3ds/files/lime3ds-0003-boost-1.87-fixes.patch
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,25 @@ | ||
From 085443f6de417a98607d50d9c6afd018cc8dc52c Mon Sep 17 00:00:00 2001 | ||
From: Andrew Udvare <[email protected]> | ||
Date: Tue, 17 Dec 2024 14:41:59 -0500 | ||
Subject: [PATCH 2/2] Boost 1.87 fixes | ||
|
||
--- | ||
src/input_common/udp/client.cpp | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/src/input_common/udp/client.cpp b/src/input_common/udp/client.cpp | ||
index 7b14dbc76..9af45306b 100644 | ||
--- a/src/input_common/udp/client.cpp | ||
+++ b/src/input_common/udp/client.cpp | ||
@@ -108,7 +108,7 @@ private: | ||
} | ||
|
||
SocketCallback callback; | ||
- boost::asio::io_service io_service; | ||
+ boost::asio::io_context io_service; | ||
boost::asio::basic_waitable_timer<clock> timer; | ||
udp::socket socket; | ||
|
||
-- | ||
2.47.1 | ||
|
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