aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/librecad-support-for-boost-1.76.patch
blob: aa352e669f1edd437493af2b8857a1261d8ec5b7 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Upstream commit e02f3580311d50b617427652ff77988f6bd62d9d adding Boost 1.76
compatibility.

diff --git a/librecad/src/lib/engine/rs_ellipse.cpp b/librecad/src/lib/engine/rs_ellipse.cpp
index 291f734ea..d47bf6ca4 100644
--- a/librecad/src/lib/engine/rs_ellipse.cpp
+++ b/librecad/src/lib/engine/rs_ellipse.cpp
@@ -48,6 +48,9 @@
 #include <boost/version.hpp>
 #include <boost/math/tools/roots.hpp>
 #include <boost/math/special_functions/ellint_2.hpp>
+#if BOOST_VERSION > 104500
+#include <boost/math/tools/tuple.hpp>
+#endif
 #endif
 
 namespace{
0200'>2023-06-17gnu: openjdk: Re-add "openjdk-15-xcursor-no-dynamic.patch"....* gnu/packages/java.scm (openjdk16)[source](patches): Re-add xcursor patch. (openjdk17)[source](patches): Re-add xcursor patch. Danny Milosavljevic 2023-06-11svn-download: Do not expand keywords....Subversion keyword expansion is potentially non-reproducible as some of them expand time strings relative to the local time zone: https://issues.guix.gnu.org/43442#18 In practice this is not a problem in Guix since Subversion checkouts happen in an isolated environment using the "default timezone" (UTC). However, Software Heritage disables keyword expansion for this very reason. By following suit, we make sure content can be retrieved from there. * guix/build/svn.scm (svn-fecth): Pass "--ignore-keywords" to Subversion. * guix/build-system/texlive.scm (%texlive-date): New variable. * gnu/packages/java.scm (java-geronimo-xbean-reflect) (java-geronimo-genesis-2.1): Update the source hash. * gnu/packages/machine-learning.scm (ghmm): Likewise. * gnu/packages/video.scm (libsmpeg, libsmpeg-with-sdl1): Likewise. * gnu/packages/tex.scm (texlive-bin): Update the hash of the "texlive-scripts" input, and a add a new phase that imitates Subversion keyword expansion for scripts that need it. (texlive-latex-base): Update the hash of the "texlive-luatexconfig" native input. (texlive-hyphen-base, texlive-dvipdfmx, texlive-dvips, texlive-cm) (texlive-tex-plain, texlive-kpathsea, texlive-latexconfig) (texlive-tetex, texlive-pdftex, texlive-xetex): Update the source hash. Co-authored-by: Ludovic Courtès <ludo@gnu.org> Timothy Sample 2023-04-29gnu: Add java-pj....* gnu/packages/java.scm (java-pj): New variable. Ricardo Wurmus 2023-04-05gnu: openjdk16: Fix build....* gnu/packages/java.scm (openjdk16)[origin]: Add patch. Andreas Enge 2023-04-05gnu: openjdk14: Fix build....* gnu/packages/java.scm (openjdk14)[origin]: Add patch. Andreas Enge 2023-04-05gnu: openjdk12: Fix build....* gnu/packages/java.scm (openjdk12)[origin]: Add patch. Andreas Enge 2023-04-05gnu: openjdk10: Add patches to fix build....* gnu/packages/patches/openjdk-10-pointer-comparison.patch, gnu/packages/patches/openjdk-10-setsignalhandler.patch: New files. * gnu/local.mk (dist_patch_DATA): Register patches. * gnu/packages/java.scm (openjdk10)[origin]: Use patches. Andreas Enge 2023-04-05gnu: openjdk9: Add patches to fix build....* gnu/packages/patches/openjdk-9-pointer-comparison.patch, gnu/packages/patches/openjdk-9-setsignalhandler.patch: New files. * gnu/local.mk (dist_patch_DATA): Register patches. * gnu/packages/java.scm (openjdk9)[origin]: Use patches. Andreas Enge 2023-03-20Merge remote-tracking branch 'origin/master' into core-updatesAndreas Enge 2023-03-20gnu: openjdk10: Apply patch again....This partially reverts commit 7636c49b45adb9870cf416c64bde032ec858a820 where the patch was dropped. * gnu/packages/java.scm (openjdk10)[source]: Apply patch. Andreas Enge 2023-03-20Merge remote-tracking branch 'origin/master' into core-updatesAndreas Enge 2023-03-16gnu: openjdk10: Build from hg....* gnu/packages/java.scm (openjdk10)[source]: Use HG-DOWNLOAD. This fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62071> for OpenJDK 10. Björn Höfling 2023-03-16gnu: openjdk9: Build from hg....* gnu/packages/java.scm (openjdk9)[source]: Use HG-DOWNLOAD. [homepage]: Update. This fixes <https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62071> for OpenJDK 9. Björn Höfling