blob: 2b0717bf87df1340f4dc56eb0401e4aa6d66babf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- third_party/angle/src/common/platform.h.orig 2025-04-22 20:15:27 UTC
+++ third_party/angle/src/common/platform.h
@@ -23,7 +23,15 @@
#elif defined(__linux__) || defined(EMSCRIPTEN)
# define ANGLE_PLATFORM_LINUX 1
# define ANGLE_PLATFORM_POSIX 1
-#elif defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || \
+#elif defined(__OpenBSD__)
+# define ANGLE_PLATFORM_OPENBSD 1
+# define ANGLE_PLATFORM_POSIX 1
+# define ANGLE_PLATFORM_BSD 1
+#elif defined(__FreeBSD__)
+# define ANGLE_PLATFORM_FREEBSD 1
+# define ANGLE_PLATFORM_POSIX 1
+# define ANGLE_PLATFORM_BSD 1
+#elif defined(__NetBSD__) || \
defined(__DragonFly__) || defined(__sun) || defined(__GLIBC__) || defined(__GNU__) || \
defined(__QNX__) || defined(__Fuchsia__) || defined(__HAIKU__)
# define ANGLE_PLATFORM_POSIX 1
|