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;