From d6cbd8a5a966ac63abe89b0829b1c2b37a03a24b Mon Sep 17 00:00:00 2001 From: flk Date: Fri, 11 Nov 2022 15:11:17 +0100 Subject: [PATCH] config.libs: dont fail if OSDependent/OGLCompiler libraries are not present (#14612) glslang no longer installs them separately, and all needed functionality has been merged into glslang shared library itself. This wasn't a problem previously as they were still provided as static libraries but in latest glslang they no longer are: https://github.com/KhronosGroup/glslang/commit/7cd519511c32d7e86d901c7ed231cb84c652d18 Signed-off-by: Markus Volk Signed-off-by: Markus Volk --- qb/config.libs.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 2227cd30a4..9cd86a8b10 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -638,8 +638,6 @@ if [ "$HAVE_GLSLANG" != no ]; then check_lib cxx GLSLANG_SPIRV_TOOLS -lSPIRV-Tools if [ "$HAVE_GLSLANG" = no ] || - [ "$HAVE_GLSLANG_OSDEPENDENT" = no ] || - [ "$HAVE_GLSLANG_OGLCOMPILER" = no ] || [ "$HAVE_GLSLANG_HLSL" = no ] || [ "$HAVE_GLSLANG_SPIRV" = no ] || [ "$HAVE_GLSLANG_SPIRV_TOOLS_OPT" = no ] ||