blob: 32b81e952150f8804717875867b8534dbad68adf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- code/graphics/openxr_internal.h.orig 2025-11-04 13:00:12 UTC
+++ code/graphics/openxr_internal.h
@@ -7,7 +7,7 @@
#include <type_traits>
#include <tl/optional.hpp>
-#ifndef __APPLE_CC__
+#if !defined(__APPLE_CC__) && !defined(__FreeBSD__)
#include <openxr/openxr.h>
#include <openxr/openxr_platform.h>
@@ -51,4 +51,4 @@ tl::optional<typename std::result_of<openxr_fnc(arg_t.
return func(std::forward<arg_t>(args)...);
}
-#endif
\ No newline at end of file
+#endif
|