Received: by mail.netbsd.org (Postfix, from userid 605) id CB9E484D4D; Fri, 28 Jun 2019 16:21:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5365084D43 for ; Fri, 28 Jun 2019 16:21:12 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id f5NH_GbB_o-A for ; Fri, 28 Jun 2019 16:21:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A8A8B84D3C for ; Fri, 28 Jun 2019 16:21:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A20C1FBF4; Fri, 28 Jun 2019 16:21:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1561738871151590" MIME-Version: 1.0 Date: Fri, 28 Jun 2019 16:21:11 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/databases/mongodb To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20190628162111.A20C1FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1561738871151590 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Fri Jun 28 16:21:11 UTC 2019 Modified Files: pkgsrc/databases/mongodb: Makefile Log Message: databases/mongodb: Re-add comment about needing c11 mongodb's build script says it needs a c11 compiler. However, one can't add change c99 to c11 in USE_LANGUAGES like one would expect because mk/compiler* doesn't yet have c11 support. Note this, to be fixed when we have c11 support in mk/compiler*. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/databases/mongodb/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1561738871151590 Content-Disposition: inline Content-Length: 786 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/mongodb/Makefile diff -u pkgsrc/databases/mongodb/Makefile:1.42 pkgsrc/databases/mongodb/Makefile:1.43 --- pkgsrc/databases/mongodb/Makefile:1.42 Fri Jun 28 12:57:28 2019 +++ pkgsrc/databases/mongodb/Makefile Fri Jun 28 16:21:11 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2019/06/28 12:57:28 adam Exp $ +# $NetBSD: Makefile,v 1.43 2019/06/28 16:21:11 gdt Exp $ DISTNAME= mongodb-src-r4.0.6 PKGNAME= ${DISTNAME:S/src-r//} @@ -24,6 +24,8 @@ BUILD_DEPENDS+= ${PYPKGPREFIX}-yaml-[0-9 NO_CONFIGURE= yes # https://github.com/mongodb/mongo/blob/master/docs/building.md USE_LANGUAGES= c99 c++17 +# Note that USE_LANGUAGES should contain c11, per SConstruct, but +# pkgsrc does not yet support that. GCC_REQD+= 8 USE_TOOLS+= pkg-config --_----------=_1561738871151590--