mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
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
11 lines
454 B
C++
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
|