mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
* gnu/packages/patches/cryfs-boost-1.88-fix.patch: New file. * gnu/packages/patches/cryfs-boost-1.89-fix.patch: New file. * gnu/local.mk (dist_patch_DATA): Update accordingly. * gnu/packages/crypto.scm (cryfs): Update to 1.0.1. [origin]: Add patches. [arguments]<#:configure-flags>: Update. <#:phases>: Update ’check and ’fix-up. [inputs]: Remove boost-1.83; add boost. [native-inputs]: Add googletest. [properties]: Enable tuning. Closes guix/guix#4539 Change-Id: I61ea925359edd1181424295380d53bf2482c7c62 Modified-by: Cayetano Santos <csantosb@inventati.org> Signed-off-by: Cayetano Santos <csantosb@inventati.org>
22 lines
1,007 B
Diff
22 lines
1,007 B
Diff
From f2f3c19979545c4789647e648cc1480ce647f42a Mon Sep 17 00:00:00 2001
|
|
From: Michael Cho <michael@michaelcho.dev>
|
|
Date: Tue, 12 Aug 2025 17:01:01 -0400
|
|
Subject: [PATCH] Fix build with Boost 1.89.0
|
|
|
|
---
|
|
cmake-utils/Dependencies.cmake | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/cmake-utils/Dependencies.cmake b/cmake-utils/Dependencies.cmake
|
|
index e2325e575..55edf924a 100644
|
|
--- a/cmake-utils/Dependencies.cmake
|
|
+++ b/cmake-utils/Dependencies.cmake
|
|
@@ -7,7 +7,7 @@ target_link_libraries(CryfsDependencies_range-v3 INTERFACE range-v3::range-v3)
|
|
set(Boost_USE_STATIC_LIBS OFF)
|
|
find_package(Boost 1.84.0
|
|
REQUIRED
|
|
- COMPONENTS filesystem system thread chrono program_options)
|
|
+ COMPONENTS filesystem thread chrono program_options)
|
|
add_library(CryfsDependencies_boost INTERFACE)
|
|
target_link_libraries(CryfsDependencies_boost INTERFACE Boost::boost Boost::filesystem Boost::thread Boost::chrono Boost::program_options)
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|