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

Yuri Victorovich yuri at FreeBSD.org
Wed Sep 23 03:30:18 UTC 2020


Author: yuri
Date: Wed Sep 23 03:30:17 2020
New Revision: 549654
URL: https://svnweb.freebsd.org/changeset/ports/549654

Log:
  graphics/py-open3d-python: Broken when the base C++ compiler is missing the header <experimental/optional>
  
  Reported by:	fallout

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

Modified: head/graphics/py-open3d-python/Makefile
==============================================================================
--- head/graphics/py-open3d-python/Makefile	Wed Sep 23 02:55:17 2020	(r549653)
+++ head/graphics/py-open3d-python/Makefile	Wed Sep 23 03:30:17 2020	(r549654)
@@ -31,4 +31,8 @@ LDFLAGS+=	-pthread # https://github.com/IntelVCL/Open3
 
 PLIST_FILES=	${PYTHON_SITELIBDIR}/open3d.so
 
+.if !exists(/usr/include/c++/v1/tr1/experimental/optional)
+BROKEN=		Base C++ compiler is missing the header <experimental/optional>, see bug\#249538
+.endif
+
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list