diff options
author | gdt <gdt@pkgsrc.org> | 2019-06-28 00:46:53 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2019-06-28 00:46:53 +0000 |
commit | 8e949695618b82d2d56ec89ef5b2f64864fa7a99 (patch) | |
tree | 398750bd9ab32122ad3ea5b76f934c896aed16ba /databases | |
parent | a1c1da0d0bcdea7be0f3164856d2c6063904f188 (diff) | |
download | pkgsrc-8e949695618b82d2d56ec89ef5b2f64864fa7a99.tar.gz |
lang/mongodb: Specify gcc 8 and c++17
According to upstream documentation
https://github.com/mongodb/mongo/blob/master/docs/building.md
mongodb 4 requires gcc 8 and c++17.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/mongodb/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/databases/mongodb/Makefile b/databases/mongodb/Makefile index d17beaa7c9f..2f7c67ac2f8 100644 --- a/databases/mongodb/Makefile +++ b/databases/mongodb/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.39 2019/06/27 01:02:22 gdt Exp $ +# $NetBSD: Makefile,v 1.40 2019/06/28 00:46:53 gdt Exp $ DISTNAME= mongodb-src-r4.0.6 PKGNAME= ${DISTNAME:S/src-r//} -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= databases MASTER_SITES= http://fastdl.mongodb.org/src/ @@ -22,9 +22,10 @@ BUILD_DEPENDS+= ${PYPKGPREFIX}-regex-[0-9]*:../../textproc/py-regex BUILD_DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9]*:../../textproc/py-yaml NO_CONFIGURE= yes -USE_LANGUAGES= c99 c++14 +# https://github.com/mongodb/mongo/blob/master/docs/building.md +USE_LANGUAGES= c99 c++17 # USE_LANGUAGES+= c11 -GCC_REQD+= 6 +GCC_REQD+= 8 USE_TOOLS+= pkg-config |