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 42
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2026-02-17
Bug-Debian: https://bugs.debian.org/1127276
Description: Besides removing libboost-system-dev from Build-Depends this patch is needed to drop boost_system
--- a/dynamicExecutable/CMakeLists.txt
+++ b/dynamicExecutable/CMakeLists.txt
@@ -66,13 +66,13 @@ if(X86_64)
target_link_libraries(
shastaDynamicExecutable
shastaDynamicLibrary
- atomic boost_system boost_program_options boost_chrono boost_serialization spoa png z
+ atomic boost_program_options boost_chrono boost_serialization spoa png z
lapack blas quadmath pthread)
else(X86_64)
target_link_libraries(
shastaDynamicExecutable
shastaDynamicLibrary
- atomic boost_system boost_program_options boost_chrono boost_serialization spoa png z
+ atomic boost_program_options boost_chrono boost_serialization spoa png z
lapack blas pthread)
endif(X86_64)
--- a/staticExecutable/CMakeLists.txt
+++ b/staticExecutable/CMakeLists.txt
@@ -61,14 +61,14 @@ if(X86_64)
target_link_libraries(
shastaStaticExecutable
shastaStaticLibrary
- atomic boost_system boost_program_options boost_chrono boost_serialization spoa png z
+ atomic boost_program_options boost_chrono boost_serialization spoa png z
lapack blas quadmath
-Wl,--whole-archive -lpthread -Wl,--no-whole-archive)
else(X86_64)
target_link_libraries(
shastaStaticExecutable
shastaStaticLibrary
- atomic boost_system boost_program_options boost_chrono boost_serialization spoa png z
+ atomic boost_program_options boost_chrono boost_serialization spoa png z
lapack blas
-Wl,--whole-archive -lpthread -Wl,--no-whole-archive)
endif(X86_64)
|