diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-07-20 21:15:52 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-07-20 21:15:52 +0000 |
commit | 3c783e2b688a0177a95de8dc67685be9dea65076 (patch) | |
tree | 12703b1f254127d7e2c572d879593ddc4ae0b8a9 | |
parent | Update to the 20200717 snapshot of GCC 9.3.1. (diff) |
math/cocoalib: fix build on GCC architectures
Use C++11 compiler:
/wrkdirs/usr/ports/math/cocoalib/work/CoCoALib-0.99710/include/CoCoA/TmpPBMill.H:263: error: 'nullptr' was not declared in this scope
MFH: 2020Q3 (fix build blanket)
-rw-r--r-- | math/cocoalib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/cocoalib/Makefile b/math/cocoalib/Makefile index 788b7648159c..6dba1b8c2acb 100644 --- a/math/cocoalib/Makefile +++ b/math/cocoalib/Makefile @@ -17,7 +17,7 @@ LICENSE_FILE_GFDL= ${WRKSRC}/doc/COPYING BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= libgmp.so:math/gmp -USES= shebangfix tar:tgz +USES= compiler:c++11-lang shebangfix tar:tgz SHEBANG_GLOB= *.sh |