From owner-svn-ports-head@freebsd.org Mon Nov 11 19:00:38 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 764971BBEC4; Mon, 11 Nov 2019 19:00:38 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47BgF22VRLz4XHq; Mon, 11 Nov 2019 19:00:38 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A2631BC04; Mon, 11 Nov 2019 19:00:38 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xABJ0cKw048242; Mon, 11 Nov 2019 19:00:38 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xABJ0c49048241; Mon, 11 Nov 2019 19:00:38 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201911111900.xABJ0c49048241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 11 Nov 2019 19:00:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r517281 - head/databases/mongodb36/files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/databases/mongodb36/files X-SVN-Commit-Revision: 517281 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Nov 2019 19:00:38 -0000 Author: swills Date: Mon Nov 11 19:00:37 2019 New Revision: 517281 URL: https://svnweb.freebsd.org/changeset/ports/517281 Log: databases/mongodb36: fails to build w/ llvm9 PR: 241709 Submitted by: kevans Approved by: dev@dudu.ro (maintainer) Added: head/databases/mongodb36/files/patch-src_mongo_base_error__codes.tpl.h (contents, props changed) Added: head/databases/mongodb36/files/patch-src_mongo_base_error__codes.tpl.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/mongodb36/files/patch-src_mongo_base_error__codes.tpl.h Mon Nov 11 19:00:37 2019 (r517281) @@ -0,0 +1,11 @@ +--- src/mongo/base/error_codes.tpl.h.orig 2019-08-13 23:47:34 UTC ++++ src/mongo/base/error_codes.tpl.h +@@ -118,7 +118,7 @@ template + constexpr bool isNamedCode = false; + //#for $ec in $codes + template <> +-constexpr bool isNamedCode = true; ++constexpr inline bool isNamedCode = true; + //#end for + + MONGO_COMPILER_NORETURN void throwExceptionForStatus(const Status& status);