gnucash: pull in upstream fix for required libs for boost >=1.90

ok aja (maintainer)
This commit is contained in:
tb
2026-05-07 20:04:10 +00:00
parent 0f18db0818
commit eba1e3996b
@@ -1,5 +1,8 @@
Force usage of webkit2gtk-4.1.
Unbreak Boost 1.90 libs
https://github.com/Gnucash/gnucash/commit/14bc748671879d2269fde3edb693b2f02122866c
Index: CMakeLists.txt
--- CMakeLists.txt.orig
+++ CMakeLists.txt
@@ -15,3 +18,16 @@ Index: CMakeLists.txt
set(WEBKIT2 1 CACHE INTERNAL "WebKit2Gtk4")
endif()
@@ -605,11 +602,7 @@ if (Boost_FOUND)
if (Boost_VERSION VERSION_LESS "1.89.0")
find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex system)
else()
- if (Boost_VERSION VERSION_LESS "1.90.0")
- find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex)
- else()
- find_package(Boost 1.67.0 COMPONENTS date_time locale program_options regex)
- endif()
+ find_package(Boost 1.67.0 COMPONENTS date_time filesystem locale program_options regex)
endif()
endif()