1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-11 08:04:25 +00:00

Linux/OSX don't like an "BSD" symbol?

This commit is contained in:
Vojtech Bubnik
2021-03-11 15:21:58 +01:00
parent 8b4b6afd7b
commit 2c76c42baa
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ void detect_platform()
}
}
#elif defined(__OpenBSD__)
s_platform = Platform::BSD;
s_platform = Platform::BSDUnix;
s_platform_flavor = PlatformFlavor::OpenBSD;
#else
// This should not happen.
+2 -2
View File
@@ -11,7 +11,7 @@ enum class Platform
Windows,
OSX,
Linux,
BSD,
BSDUnix,
};
enum class PlatformFlavor
@@ -23,7 +23,7 @@ enum class PlatformFlavor
// For Platform::Linux
GenericLinux,
LinuxOnChromium,
// For Platform::BSD
// For Platform::BSDUnix
OpenBSD,
};