Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 13 Mar 2019 05:04:58 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r495550 - head/graphics/py-open3d-python
Message-ID:  <201903130504.x2D54wAW047368@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903130504.x2D54wAW047368>