File fix-boost-1.88.patch of Package sunshine
Binary files sunshine.orig/.git/index and sunshine/.git/index differ
diff '--color=auto' -rub sunshine.orig/src/platform/common.h sunshine/src/platform/common.h
--- sunshine.orig/src/platform/common.h 2025-08-14 19:10:13.933279674 -0300
+++ sunshine/src/platform/common.h 2025-08-14 19:49:44.423881349 -0300
@@ -15,7 +15,8 @@
#include <boost/core/noncopyable.hpp>
#ifndef _WIN32
#include <boost/asio.hpp>
- #include <boost/process.hpp>
+ // Compatible with Boost 1.88+
+ #include <boost/process/v1.hpp>
#endif
// local includes
diff '--color=auto' -rub sunshine.orig/src/platform/linux/misc.cpp sunshine/src/platform/linux/misc.cpp
--- sunshine.orig/src/platform/linux/misc.cpp 2025-08-14 19:10:13.935897536 -0300
+++ sunshine/src/platform/linux/misc.cpp 2025-08-14 19:50:38.414635625 -0300
@@ -43,7 +43,8 @@
using namespace std::literals;
namespace fs = std::filesystem;
-namespace bp = boost::process;
+// Compatible with Boost 1.88+
+namespace bp = boost::process::v1;
window_system_e window_system;