diff options
author | alula <6276139+alula@users.noreply.github.com> | 2024-06-05 23:05:59 +0200 |
---|---|---|
committer | Alula <6276139+alula@users.noreply.github.com> | 2024-06-06 01:54:54 +0200 |
commit | 3cc3c0bd952fb7c4db96a8f167ac917ce5a84a78 (patch) | |
tree | 79b43aa8dc622af8642e02df3da703fb66021468 /thirdparty | |
parent | 96a386f3c424af96d950ee5098b4b0e4907c9508 (diff) | |
download | redot-engine-3cc3c0bd952fb7c4db96a8f167ac917ce5a84a78.tar.gz |
fix building glslang on platforms without <filesystem>
Diffstat (limited to 'thirdparty')
-rw-r--r-- | thirdparty/glslang/glslang/Include/InfoSink.h | 2 | ||||
-rw-r--r-- | thirdparty/glslang/patches/disable-absolute-paths-for-apple-compat.patch (renamed from thirdparty/glslang/glslang/patches/disable-absolute-paths-for-apple-compat.patch) | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/thirdparty/glslang/glslang/Include/InfoSink.h b/thirdparty/glslang/glslang/Include/InfoSink.h index b1b537df54..137ede8510 100644 --- a/thirdparty/glslang/glslang/Include/InfoSink.h +++ b/thirdparty/glslang/glslang/Include/InfoSink.h @@ -36,7 +36,7 @@ #define _INFOSINK_INCLUDED_ #include "../Include/Common.h" -#include <filesystem> +//#include <filesystem> #include <cmath> namespace glslang { diff --git a/thirdparty/glslang/glslang/patches/disable-absolute-paths-for-apple-compat.patch b/thirdparty/glslang/patches/disable-absolute-paths-for-apple-compat.patch index d15a531b7c..135020737e 100644 --- a/thirdparty/glslang/glslang/patches/disable-absolute-paths-for-apple-compat.patch +++ b/thirdparty/glslang/patches/disable-absolute-paths-for-apple-compat.patch @@ -1,7 +1,16 @@ diff --git a/thirdparty/glslang/glslang/Include/InfoSink.h b/thirdparty/glslang/glslang/Include/InfoSink.h -index 23f495dcb7..b1b537df54 100644 +index 23f495dc..137ede85 100644 --- a/thirdparty/glslang/glslang/Include/InfoSink.h +++ b/thirdparty/glslang/glslang/Include/InfoSink.h +@@ -36,7 +36,7 @@ + #define _INFOSINK_INCLUDED_ + + #include "../Include/Common.h" +-#include <filesystem> ++//#include <filesystem> + #include <cmath> + + namespace glslang { @@ -101,14 +101,14 @@ public: snprintf(locText, maxSize, ":%d", loc.line); |