Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/cad/OrcaSlicer/files/patch-src_slic3r_GUI_RemovableDriveManager.cpp
46591 views
1
--- src/slic3r/GUI/RemovableDriveManager.cpp.orig 2025-10-02 17:32:12 UTC
2
+++ src/slic3r/GUI/RemovableDriveManager.cpp
3
@@ -22,7 +22,14 @@
4
#include <pwd.h>
5
#include <boost/filesystem.hpp>
6
#include <boost/system/error_code.hpp>
7
+#if BOOST_VERSION >= 108800
8
+#define BOOST_PROCESS_VERSION 1
9
+#include <boost/process/v1/child.hpp>
10
+#include <boost/process/v1/io.hpp>
11
+#include <boost/process/v1/search_path.hpp>
12
+#else
13
#include <boost/process.hpp>
14
+#endif
15
#endif
16
17
namespace Slic3r {
18
19