emulationstation: fix build with Boost 1.91

Don't probe for the no longer existing Boost::system and regen WANTLIB.
This commit is contained in:
tb
2026-05-16 11:44:10 +00:00
parent 8007e674bd
commit 7e5ff0ca5b
2 changed files with 16 additions and 4 deletions
+4 -4
View File
@@ -14,10 +14,10 @@ HOMEPAGE = http://www.emulationstation.org/
# MIT
PERMIT_PACKAGE = Yes
WANTLIB += GL GLU SDL2 boost_date_time-mt boost_filesystem-mt
WANTLIB += boost_atomic-mt boost_chrono-mt boost_thread-mt
WANTLIB += boost_locale-mt c curl freeimage freetype
WANTLIB += m pthread ${COMPILER_LIBCXX}
WANTLIB += ${COMPILER_LIBCXX} GL GLU SDL2 boost_atomic-mt boost_charconv-mt
WANTLIB += boost_chrono-mt boost_container-mt boost_date_time-mt
WANTLIB += boost_filesystem-mt boost_locale-mt boost_thread-mt
WANTLIB += c curl freeimage freetype m
MODULES = devel/cmake
@@ -0,0 +1,12 @@
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -45,7 +45,7 @@ endif()
find_package(Freetype REQUIRED)
find_package(FreeImage REQUIRED)
find_package(SDL2 REQUIRED)
-find_package(Boost REQUIRED COMPONENTS system filesystem date_time locale)
+find_package(Boost REQUIRED COMPONENTS filesystem date_time locale)
find_package(Eigen3 REQUIRED)
find_package(CURL REQUIRED)