mirror of
https://git.freebsd.org/ports.git
synced 2025-07-02 10:00:37 -04:00
PR: 272730 Reported by: michal.zielonka.8001@gmail.com Approved by: teodorsigaev@gmail.com (maintainer)
20 lines
483 B
C++
20 lines
483 B
C++
--- src/slic3r/GUI/InstanceCheck.hpp.orig 2023-07-25 11:12:36 UTC
|
|
+++ src/slic3r/GUI/InstanceCheck.hpp
|
|
@@ -11,7 +11,7 @@
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
-#if __linux__
|
|
+#if defined(__linux__) || defined(__FreeBSD__)
|
|
#include <boost/thread.hpp>
|
|
#include <mutex>
|
|
#include <condition_variable>
|
|
@@ -38,7 +38,7 @@ class MainFrame;
|
|
|
|
class MainFrame;
|
|
|
|
-#if __linux__
|
|
+#if defined(__linux__) || defined(__FreeBSD__)
|
|
#define BACKGROUND_MESSAGE_LISTENER
|
|
#endif // __linux__
|
|
|