diff options
author | mrg <mrg@pkgsrc.org> | 2021-04-25 22:07:26 +0000 |
---|---|---|
committer | mrg <mrg@pkgsrc.org> | 2021-04-25 22:07:26 +0000 |
commit | 6ed41358f5af8c8f3e5a683ff70dab48f1e0ff30 (patch) | |
tree | 588972f585f05641a291c9d9bc7cec321b99a8b1 /math | |
parent | 964013b0a4c006192058309db6e572a0e5136fce (diff) | |
download | pkgsrc-6ed41358f5af8c8f3e5a683ff70dab48f1e0ff30.tar.gz |
request c++11, not c++03. some of the demos in this library need
to be built with c++11, though the library itself is c++03 clean.
necessary for GCC 10 hosts. also tested on GCC 7 / netbsd 9.x.
from Chavdar Ivanov on current-users.
Diffstat (limited to 'math')
-rw-r--r-- | math/cgal/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/cgal/Makefile b/math/cgal/Makefile index 54a6ebc8de7..62b6f024111 100644 --- a/math/cgal/Makefile +++ b/math/cgal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.62 2021/04/21 13:24:12 adam Exp $ +# $NetBSD: Makefile,v 1.63 2021/04/25 22:07:26 mrg Exp $ DISTNAME= CGAL-4.14 PKGNAME= ${DISTNAME:tl} @@ -15,7 +15,7 @@ COMMENT= Computational Geometry Algorithms Library LICENSE= gnu-lgpl-v3 USE_CMAKE= yes -USE_LANGUAGES= c c++03 +USE_LANGUAGES= c c++11 CMAKE_ARGS+= -DCGAL_INSTALL_MAN_DIR=${PREFIX}/${PKGMANDIR}/man1 REPLACE_SH+= scripts/cgal_create_CMakeLists |