File: Lower-required-boost-version-to-1.74.patch

package info (click to toggle)
libbgcode 0.0~git20250220.5041c09-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,188 kB
  • sloc: cpp: 3,700; python: 255; makefile: 6
file content (22 lines) | stat: -rw-r--r-- 738 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
From: Chow Loong Jin <hyperair@debian.org>
Date: Tue, 12 Dec 2023 14:16:51 +0800
Subject: Lower required boost version to 1.74

This is needed for compatibiity with other dependencies of
PrusaSlicer like CGAL
---
 src/LibBGCode/convert/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/LibBGCode/convert/CMakeLists.txt b/src/LibBGCode/convert/CMakeLists.txt
index 80676de..04fbc4d 100644
--- a/src/LibBGCode/convert/CMakeLists.txt
+++ b/src/LibBGCode/convert/CMakeLists.txt
@@ -1,6 +1,6 @@
 set(Convert_DOWNSTREAM_DEPS "")
 
-set(Boost_VER 1.78)
+set(Boost_VER 1.74)
 find_package(Boost ${Boost_VER} REQUIRED)
 if (NOT BUILD_SHARED_LIBS)
     list(APPEND Convert_DOWNSTREAM_DEPS "Boost_${Boost_VER}")