File: 1001-CMakeLists-Don-t-request-Boost.system-component.patch

package info (click to toggle)
net-cpp 3.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 632 kB
  • sloc: cpp: 3,649; ansic: 185; makefile: 24
file content (24 lines) | stat: -rw-r--r-- 796 bytes parent folder | download
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})