diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2019-03-13 05:04:57 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2019-03-13 05:04:57 +0000 |
commit | c183d78b3822b49bdb1b30b22cbcc5c515e4ebd5 (patch) | |
tree | f1b319b18e01c29de4409e7807119fad34e2ca2c | |
parent | Fix build on gcc-based architectures: (diff) |
Fix build on gcc-based architectures:
Unsupported compiler -- pybind11 requires C++11 support!
Approved by: portmgr (tier-2 blanket)
-rw-r--r-- | graphics/py-open3d-python/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphics/py-open3d-python/Makefile b/graphics/py-open3d-python/Makefile index eab8edbc546f..f597d5d78f1d 100644 --- a/graphics/py-open3d-python/Makefile +++ b/graphics/py-open3d-python/Makefile @@ -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 |