View | Details | Raw Unified | Return to bug 277480
Collapse All | Expand All

(-)b/math/cgal/Makefile (-1 / +1 lines)
Lines 1-6 Link Here
1
PORTNAME=	cgal
1
PORTNAME=	cgal
2
PORTVERSION=	5.5.1
2
PORTVERSION=	5.5.1
3
PORTREVISION=	1
3
PORTREVISION=	2
4
CATEGORIES=	math
4
CATEGORIES=	math
5
MASTER_SITES=	https://github.com/${PORTNAME:tu}/${PORTNAME}/releases/download/v${PORTVERSION}/
5
MASTER_SITES=	https://github.com/${PORTNAME:tu}/${PORTNAME}/releases/download/v${PORTVERSION}/
6
DISTNAME=	${PORTNAME:tu}-${PORTVERSION}
6
DISTNAME=	${PORTNAME:tu}-${PORTVERSION}
(-)b/math/cgal/files/patch-include_CGAL_Intersections__3_internal_Plane__3__Triangle__3__intersection.h (+15 lines)
Added Link Here
1
--- include/CGAL/Intersections_3/internal/Plane_3_Triangle_3_intersection.h.orig	2024-03-04 16:56:49 UTC
2
+++ include/CGAL/Intersections_3/internal/Plane_3_Triangle_3_intersection.h
3
@@ -13,6 +13,12 @@
4
 #ifndef CGAL_INTERNAL_INTERSECTIONS_PLANE_3_TRIANGLE_3_INTERSECTION_H
5
 #define CGAL_INTERNAL_INTERSECTIONS_PLANE_3_TRIANGLE_3_INTERSECTION_H
6
 
7
+#include <boost/version.hpp>
8
+#if BOOST_VERSION >= 106700
9
+#include <boost/next_prior.hpp>
10
+#else
11
+#include <boost/utility.hpp>
12
+#endif
13
 #include <CGAL/Intersection_traits_3.h>
14
 #include <CGAL/Intersections_3/internal/Line_3_Plane_3_intersection.h>
15
 

Return to bug 277480