Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-ports
Path: blob/main/finance/gnucash/files/patch-CMakeLists.txt
46590 views
1
From 14bc748671879d2269fde3edb693b2f02122866c Mon Sep 17 00:00:00 2001
2
From: John Ralls <[email protected]>
3
Date: Sun, 29 Mar 2026 10:39:20 -0700
4
Subject: [PATCH] Remove inadvertently committed boost-1.90 library list
5
change.
6
7
---
8
CMakeLists.txt | 6 +-----
9
1 file changed, 1 insertion(+), 5 deletions(-)
10
11
diff --git a/CMakeLists.txt b/CMakeLists.txt
12
index b26fa3ddb10..981e6c06c66 100644
13
--- CMakeLists.txt
14
+++ CMakeLists.txt
15
@@ -605,11 +605,7 @@ if (Boost_FOUND)
16
if (Boost_VERSION VERSION_LESS "1.89.0")
17
find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex system)
18
else()
19
- if (Boost_VERSION VERSION_LESS "1.90.0")
20
- find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex)
21
- else()
22
- find_package(Boost 1.67.0 COMPONENTS date_time locale program_options regex)
23
- endif()
24
+ find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex)
25
endif()
26
endif()
27
28
29