From 15fb1f78b34ac84006069b2eeea9a9b6d612be07 Mon Sep 17 00:00:00 2001 From: Esther1024 Date: Thu, 22 May 2025 20:38:57 +0000 Subject: [PATCH] fix include for boost 1.8.3+ (#121) Co-authored-by: swurl Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/121 Co-authored-by: Esther1024 Co-committed-by: Esther1024 --- src/core/debugger/debugger.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/core/debugger/debugger.cpp b/src/core/debugger/debugger.cpp index e86aae8460..84c846bab2 100644 --- a/src/core/debugger/debugger.cpp +++ b/src/core/debugger/debugger.cpp @@ -1,12 +1,15 @@ // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later -#include #include -#include #include +#include +#if BOOST_VERSION > 108300 && !defined(_WINDOWS) && !defined(ANDROID) +#include +#else #include +#endif #include "common/logging/log.h" #include "common/polyfill_thread.h" @@ -326,7 +329,11 @@ private: struct ConnectionState { boost::asio::ip::tcp::socket client_socket; +#if BOOST_VERSION > 108300 && !defined(_WINDOWS) && !defined(ANDROID) + boost::process::v1::async_pipe signal_pipe; +#else boost::process::async_pipe signal_pipe; +#endif SignalInfo info; Kernel::KScopedAutoObject active_thread;