From 967324a368bcca86191913d92b04d5de39706601 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Fri, 11 Apr 2025 20:49:42 -0500 Subject: [PATCH] updated build system dependencies --- repertory/repertory/src/ui/handlers.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/repertory/repertory/src/ui/handlers.cpp b/repertory/repertory/src/ui/handlers.cpp index f6ef542a..f01f3669 100644 --- a/repertory/repertory/src/ui/handlers.cpp +++ b/repertory/repertory/src/ui/handlers.cpp @@ -34,7 +34,9 @@ #include "utils/path.hpp" #include "utils/string.hpp" -#include +#include +#include +#include namespace { [[nodiscard]] auto decrypt(std::string_view data, std::string_view password) @@ -693,9 +695,10 @@ auto handlers::launch_process(provider_type prov, std::string_view name, return {}; } - boost::process::ipstream out; - boost::process::child proc(repertory_binary_, boost::process::args(args), - boost::process::std_out > out); + boost::process::v1::ipstream out; + boost::process::v1::child proc(repertory_binary_, + boost::process::v1::args(args), + boost::process::v1::std_out > out); std::string data; std::string line;