summaryrefslogtreecommitdiff
path: root/graphics/py-open3d-python
diff options
context:
space:
mode:
authorYuri Victorovich <yuri@FreeBSD.org>2020-09-23 03:30:17 +0000
committerYuri Victorovich <yuri@FreeBSD.org>2020-09-23 03:30:17 +0000
commitf2a804f80dda03e7bf39ed7d84704156d104cd03 (patch)
tree00e6ec6e29eb4c3116afb0e9eaa6e27cbb40b883 /graphics/py-open3d-python
parentdevel/rubygem-irb: Update to 1.2.7 (diff)
graphics/py-open3d-python: Broken when the base C++ compiler is missing the header <experimental/optional>
Reported by: fallout
Diffstat (limited to 'graphics/py-open3d-python')
-rw-r--r--graphics/py-open3d-python/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/graphics/py-open3d-python/Makefile b/graphics/py-open3d-python/Makefile
index c97564a385d8..e929148852ca 100644
--- a/graphics/py-open3d-python/Makefile
+++ b/graphics/py-open3d-python/Makefile
@@ -31,4 +31,8 @@ LDFLAGS+= -pthread # https://github.com/IntelVCL/Open3D/issues/510
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>