ports/devel/boost-libs/files/patch-libs_process_src_ext_exe.cpp
Dima Panov a4245a4c6c
devel/boost: update to 1.87.0 release (+)
New port devel/boost-mpi-libs, Message Passing Interface library,
for use in distributed-memory parallel application programming.

In this release Boost have dropped some long-time-ago deprecated asio facilites
See https://www.boost.org/doc/libs/1_87_0/doc/html/boost_asio/history.html for details.

Release Notes:	https://www.boost.org/users/history/version_1_87_0.html
Sponsored by:	Future Crew, LLC
2025-02-14 06:17:01 +03:00

11 lines
454 B
C++

--- libs/process/src/ext/exe.cpp.orig 2024-12-05 00:53:35 UTC
+++ libs/process/src/ext/exe.cpp
@@ -138,7 +138,7 @@ filesystem::path exe(boost::process::v2::pid_type pid,
filesystem::path("/proc") / std::to_string(pid) / "exe", ec
);
#elif defined(__sun)
- return fileystem::canonical(
+ return filesystem::canonical(
filesystem::path("/proc") / std::to_string(pid) / "path/a.out", ec
);
#endif