Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 23 Sep 2020 03:30:18 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r549654 - head/graphics/py-open3d-python
Message-ID:  <202009230330.08N3UInU042083@repo.freebsd.org>

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



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