diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2019-03-13 05:03:15 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2019-03-13 05:03:15 +0000 |
commit | 5e25e0ebf524177c3a57f4c0e4e78d5b18f36a75 (patch) | |
tree | 682aaabce296a0ead32be163e4d5a51dafcef805 | |
parent | Fix build with gcc-based architectures: (diff) |
Fix build on gcc-based architectures:
Target "partio" requires the language dialect "CXX11", but CMake does not know the compile flags to use to enable it.
-rw-r--r-- | graphics/partio/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/partio/Makefile b/graphics/partio/Makefile index 122787aca761..25ec025739b6 100644 --- a/graphics/partio/Makefile +++ b/graphics/partio/Makefile @@ -12,7 +12,7 @@ LICENSE= BSD3CLAUSE BUILD_DEPENDS= swig3.0:devel/swig30 -USES= cmake gl python shebangfix +USES= cmake compiler:c++11-lang gl python shebangfix SHEBANG_FILES= src/tools/partedit.py src/tools/partjson.py USE_GL= gl glu glut USE_LDCONFIG= yes |