1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Remove deprecated Boost.System component
Author: Anton Gladky <gladk@debian.org>
Bug-Debian: https://bugs.debian.org/1129807
Last-Update: 2026-03-22
Index: asl-0.1.7/CMakeLists.txt
===================================================================
--- asl-0.1.7.orig/CMakeLists.txt
+++ asl-0.1.7/CMakeLists.txt
@@ -49,8 +49,7 @@ include(ASLBuildFunctions)
# Find dependencies
find_package(OpenCL 1.1 REQUIRED)
-# ToDo: check - system component might be not needed any longer on new versions of Boost
-find_package(Boost 1.53 REQUIRED COMPONENTS program_options filesystem system)
+find_package(Boost 1.53 REQUIRED COMPONENTS program_options filesystem)
# ToDo: remove support for VTK 6.1 at some point in future
#find_package(VTK 6.1 QUIET COMPONENTS vtkRenderingCore vtkImagingCore vtkFiltersCore vtkIOCore vtkIOGeometry vtkIOLegacy vtkIOXML vtkIOMINC vtkCommonCore vtkViewsCore vtkftgl vtksys vtkDICOMParser vtkexpat vtkzlib NO_MODULE)
#if(NOT VTK_FOUND)
|