From e19c55b9f6076e758dcd4586bba4cd808cc38d9e Mon Sep 17 00:00:00 2001 From: yate Date: Mon, 20 Oct 2025 17:26:40 -0400 Subject: [PATCH] remove boost system library --- README.md | 2 +- libgrive/CMakeLists.txt | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a71923d1..8d9a5cb2 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ You need the following libraries: - libcurl - libstdc++ - libgcrypt -- Boost (Boost filesystem, program_options, regex, unit_test_framework and system are required) +- Boost (Boost filesystem, program_options, regex, and unit_test_framework are required) - expat There are also some optional dependencies: diff --git a/libgrive/CMakeLists.txt b/libgrive/CMakeLists.txt index c56d70cf..28fb39ae 100644 --- a/libgrive/CMakeLists.txt +++ b/libgrive/CMakeLists.txt @@ -5,7 +5,7 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/") find_package(LibGcrypt REQUIRED) find_package(CURL REQUIRED) find_package(Backtrace) -find_package(Boost 1.40.0 COMPONENTS program_options filesystem unit_test_framework regex system REQUIRED) +find_package(Boost 1.40.0 COMPONENTS program_options filesystem unit_test_framework regex REQUIRED) find_package(BFD) find_package(CppUnit) find_package(Iberty) @@ -81,7 +81,6 @@ target_link_libraries( grive ${Boost_FILESYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY} ${Boost_REGEX_LIBRARY} - ${Boost_SYSTEM_LIBRARY} ${IBERTY_LIBRARY} ${OPT_LIBS} )