File performous-1.2.0-no-boost-system.patch of Package performous
commit 6303872b0f230ece6c018f58854de48711521a5d
Author: Bernhard M. Wiedemann <bwiedemann@suse.de>
Date: Wed Dec 17 12:29:11 2025 +0000
Don't use boost_system anymore
as it was dropped in boost 1.89
diff --git a/game/CMakeLists.txt b/game/CMakeLists.txt
index 93a2b4d..0819b90 100644
--- a/game/CMakeLists.txt
+++ b/game/CMakeLists.txt
@@ -68,7 +68,7 @@ set(SOURCES ${SOURCE_FILES} ${HEADER_FILES} ${RESOURCE_FILES})
add_executable(performous ${SUBSYSTEM_WIN32} ${SOURCES} ${SDL2_SOURCES})
# Libraries
-find_package(Boost 1.55 REQUIRED COMPONENTS program_options iostreams system locale)
+find_package(Boost 1.55 REQUIRED COMPONENTS program_options iostreams locale)
target_include_directories(performous SYSTEM PRIVATE ${Boost_INCLUDE_DIRS})
target_link_libraries(performous PRIVATE ${Boost_LIBRARIES})