svn commit: r408549 - in head/math/cgal: . files

Dmitry Marakasov amdmi3 at FreeBSD.org
Tue Feb 9 10:38:40 UTC 2016


Author: amdmi3
Date: Tue Feb  9 10:38:38 2016
New Revision: 408549
URL: https://svnweb.freebsd.org/changeset/ports/408549

Log:
  - Fix build of cgal consumers (sfcgal) with boost 1.60
  
  PR:		199601
  Approved by:	portmgr blanket

Added:
  head/math/cgal/files/patch-include_CGAL_Straight__skeleton_2_Straight_skeleton_builder_2_impl.h   (contents, props changed)
Modified:
  head/math/cgal/Makefile

Modified: head/math/cgal/Makefile
==============================================================================
--- head/math/cgal/Makefile	Tue Feb  9 10:31:16 2016	(r408548)
+++ head/math/cgal/Makefile	Tue Feb  9 10:38:38 2016	(r408549)
@@ -3,6 +3,7 @@
 
 PORTNAME=	cgal
 PORTVERSION=	4.6
+PORTREVISION=	1
 CATEGORIES=	math
 MASTER_SITES=	http://gforge.inria.fr/frs/download.php/34703/
 DISTNAME=	CGAL-${PORTVERSION}

Added: head/math/cgal/files/patch-include_CGAL_Straight__skeleton_2_Straight_skeleton_builder_2_impl.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/math/cgal/files/patch-include_CGAL_Straight__skeleton_2_Straight_skeleton_builder_2_impl.h	Tue Feb  9 10:38:38 2016	(r408549)
@@ -0,0 +1,16 @@
+--- include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_2_impl.h.orig	2014-08-29 14:14:56 UTC
++++ include/CGAL/Straight_skeleton_2/Straight_skeleton_builder_2_impl.h
+@@ -21,6 +21,13 @@
+ 
+ #include <boost/bind.hpp>
+ #include <boost/utility.hpp>
++
++// Workaround for boost bug #11880
++#include <boost/version.hpp>
++#if BOOST_VERSION == 106000
++	#include <boost/type_traits/ice.hpp>
++#endif
++
+ #include <boost/graph/adjacency_matrix.hpp>
+ #include <CGAL/Unique_hash_map.h>
+ 


More information about the svn-ports-all mailing list