blob: 2b9c52d9b06357c21a58b52adf1b6ee28ca3e7a0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
--- src/slic3r/GUI/HintNotification.cpp.orig 2024-12-20 11:54:34 UTC
+++ src/slic3r/GUI/HintNotification.cpp
@@ -161,6 +161,13 @@ TagCheckResult tag_check_system(const std::string& tag
return TagCheckNegative;
#endif // __linux__
+ if (tag == "FreeBSD")
+#ifdef __FreeBSD__
+ return TagCheckAffirmative;
+#else
+ return TagCheckNegative;
+#endif // __FreeBSD__
+
if (tag == "OSX")
#ifdef __APPLE__
return TagCheckAffirmative;
|