summarylogtreecommitdiffstats
path: root/004-fix-boost189.patch
blob: 1bb3bcd571084d58ac0fc65850e123116b4ad167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From 3d798653c1add80a69ce3df066bb3379ac4c46a4 Mon Sep 17 00:00:00 2001
From: sukanka <su975853527@gmail.com>
Date: Fri, 16 Jan 2026 23:31:45 +0800
Subject: [PATCH] fix for boost 1.89

---
 cmake/CMakeLists.txt              | 1 -
 cmake/IfcOpenShellConfig.cmake.in | 2 +-
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
index 0e73e4d6c6c..38a7bb3e17b 100644
--- a/cmake/CMakeLists.txt
+++ b/cmake/CMakeLists.txt
@@ -315,7 +315,6 @@ else()
     # @todo review this, shouldn't this be all possible header-only now?
     # ... or rewritten using C++17 features?
     set(BOOST_COMPONENTS
-        system
         program_options
         regex
         thread
diff --git a/cmake/IfcOpenShellConfig.cmake.in b/cmake/IfcOpenShellConfig.cmake.in
index 95df6180f97..363cc26d223 100644
--- a/cmake/IfcOpenShellConfig.cmake.in
+++ b/cmake/IfcOpenShellConfig.cmake.in
@@ -13,14 +13,13 @@ include(CMakeFindDependencyMacro)
 set(Boost_USE_STATIC_LIBS ON)
 set(Boost_USE_STATIC_RUNTIME OFF)
 set(Boost_USE_MULTITHREADED ON)
 set(Boost_COMPONENTS
-     system
     program_options
     regex
     thread
     date_time
     iostreams
 )
 find_dependency(Boost CONFIG COMPONENTS ${Boost_COMPONENTS})
 find_dependency(Eigen3 CONFIG)