Build failure with boost 1.88.0 #1367

fix compilation errors by including the deprecated boost process v1 APIs
This commit is contained in:
Tobias Hochwallner 2025-05-07 22:42:07 +02:00 committed by Johannes Pohl
parent c06481aa74
commit 798e5cb142
2 changed files with 10 additions and 4 deletions

View file

@ -18,14 +18,16 @@
#pragma once
// local headers
#include "jsonrpcpp.hpp"
#include "server_settings.hpp"
// 3rd party headers
#include <boost/asio/any_io_executor.hpp>
#include <boost/process.hpp>
#define BOOST_PROCESS_VERSION 1
#include <boost/asio.hpp>
#include <boost/process/v1/io.hpp>
#include <boost/process/v1/start_dir.hpp>
#include <boost/process/v1/system.hpp>
// standard headers
#include <filesystem>