1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: =?UTF-8?q?Jeremy=20B=C3=ADcha?= <jbicha@ubuntu.com>
Date: Fri, 20 Feb 2026 11:43:59 -0500
Subject: [PATCH] CMakeLists: Don't request Boost.system component
https://bugs.debian.org/1127243
Forwarded: https://gitlab.com/ubports/development/core/lib-cpp/net-cpp/-/merge_requests/22
---
src/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index dc82f05..5d6be54 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -14,7 +14,7 @@
#
# Authored by: Thomas Voss <thomas.voss@canonical.com>
-find_package(Boost COMPONENTS system serialization REQUIRED)
+find_package(Boost COMPONENTS serialization REQUIRED)
find_package(CURL 7.32 REQUIRED)
include_directories(${Boost_INCLUDE_DIRS} ${CURL_INCLUDE_DIRS})
|