opnsense-ports/misc/dartsim/files/patch-dart_common_Platform.hpp
Franco Fichtner 2b2bc606e4 */*: sync with upstream
Taken from: FreeBSD
2022-05-04 10:49:12 +02:00

18 lines
373 B
C++

--- dart/common/Platform.hpp.orig 2021-11-04 20:43:53 UTC
+++ dart/common/Platform.hpp
@@ -43,6 +43,15 @@
#define DART_ARCH_32BITS 1
#endif
+#elif defined(__FreeBSD__)
+
+#define DART_OS_FREEBSD 1
+#if __x86_64__ || __ppc64__
+#define DART_ARCH_64BITS 1
+#else
+#define DART_ARCH_32BITS 1
+#endif
+
#elif defined(__APPLE__)
#define DART_OS_MACOS 1