New comment by curiousjunior on void-packages repository https://github.com/void-linux/void-packages/issues/35822#issuecomment-1049475100 Comment: I forgot to mention that patch doesn't touch `snd_qf` because I removed that module before I made that patch, to get rid of `snd_qf` you need this patch: ``` diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 48e37dd094..7c24451bda 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -228,7 +228,6 @@ if (NOT GAME_MODULES_ONLY) add_subdirectory(irc) add_subdirectory(ref_gl) add_subdirectory(snd_openal) - add_subdirectory(snd_qf) add_subdirectory(ui) add_subdirectory(steamlib) add_subdirectory(server) diff --git a/source/client/CMakeLists.txt b/source/client/CMakeLists.txt index 249add1643..daaa242024 100644 --- a/source/client/CMakeLists.txt +++ b/source/client/CMakeLists.txt @@ -197,7 +197,7 @@ else() endif() add_executable(${QFUSION_CLIENT_NAME} ${CLIENT_BINARY_TYPE} ${CLIENT_HEADERS} ${CLIENT_PLATFORM_HEADERS} ${CLIENT_COMMON_SOURCES} ${CLIENT_PLATFORM_SOURCES} ${BUNDLE_RESOURCES}) -add_dependencies(${QFUSION_CLIENT_NAME} angelwrap cgame cin ftlib game irc ref_gl snd_openal snd_qf steamlib ui) +add_dependencies(${QFUSION_CLIENT_NAME} angelwrap cgame cin ftlib game irc ref_gl snd_openal steamlib ui) if (APPLE) set_target_properties(${QFUSION_CLIENT_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST ${QFUSION_MAC_INFO_PLIST}) ```