svn commit: r495550 - head/graphics/py-open3d-python

Mark Linimon linimon at FreeBSD.org
Wed Mar 13 05:04:58 UTC 2019


Author: linimon
Date: Wed Mar 13 05:04:57 2019
New Revision: 495550
URL: https://svnweb.freebsd.org/changeset/ports/495550

Log:
  Fix build on gcc-based architectures:
  
      Unsupported compiler -- pybind11 requires C++11 support!
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  head/graphics/py-open3d-python/Makefile

Modified: head/graphics/py-open3d-python/Makefile
==============================================================================
--- head/graphics/py-open3d-python/Makefile	Wed Mar 13 05:03:15 2019	(r495549)
+++ head/graphics/py-open3d-python/Makefile	Wed Mar 13 05:04:57 2019	(r495550)
@@ -15,7 +15,8 @@ LICENSE_FILE=	${WRKSRC}/../LICENSE
 
 LIB_DEPENDS=	libOpen3D.so:graphics/open3d
 
-USES=		cmake eigen:3 fortran localbase:ldflags pkgconfig python
+USES=		cmake compiler:c++11-lang eigen:3 fortran localbase:ldflags \
+		pkgconfig python
 USE_GITHUB=	yes
 GH_ACCOUNT=	IntelVCL
 GH_PROJECT=	Open3D


More information about the svn-ports-all mailing list