opnsense-ports/misc/dartsim/files/patch-dart_common_Platform.hpp
Franco Fichtner 6c54ab69a0 */*: sync with upstream
Taken from: HardenedBSD
2021-07-21 08:08:56 +02:00

18 lines
373 B
C++

--- dart/common/Platform.hpp.orig 2021-07-15 08:12:45 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