Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 96CA61A9239 for ; Sun, 25 Oct 2020 12:51:26 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 1585984D67; Sun, 25 Oct 2020 12:51:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 91E7B84D66 for ; Sun, 25 Oct 2020 12:51:25 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id gGPfddIA3OeM for ; Sun, 25 Oct 2020 12:51:25 +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 108EB84D21 for ; Sun, 25 Oct 2020 12:51:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 01E7EFB28; Sun, 25 Oct 2020 12:51:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1603630284242790" MIME-Version: 1.0 Date: Sun, 25 Oct 2020 12:51:24 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/protobuf To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201025125125.01E7EFB28@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. --_----------=_1603630284242790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Oct 25 12:51:24 UTC 2020 Modified Files: pkgsrc/devel/protobuf: Makefile buildlink3.mk Log Message: protobuf: Needs a c++11 capable compiler To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 pkgsrc/devel/protobuf/Makefile cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/protobuf/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1603630284242790 Content-Disposition: inline Content-Length: 1453 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/protobuf/Makefile diff -u pkgsrc/devel/protobuf/Makefile:1.33 pkgsrc/devel/protobuf/Makefile:1.34 --- pkgsrc/devel/protobuf/Makefile:1.33 Fri Aug 21 11:29:18 2020 +++ pkgsrc/devel/protobuf/Makefile Sun Oct 25 12:51:24 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.33 2020/08/21 11:29:18 adam Exp $ +# $NetBSD: Makefile,v 1.34 2020/10/25 12:51:24 nia Exp $ DISTNAME= protobuf-cpp-3.13.0 PKGNAME= ${DISTNAME:S/-cpp//} @@ -34,6 +34,9 @@ SET_LIBDIR= yes CXXFLAGS+= -march=i586 .endif +# configure: error: *** A compiler with support for C++11 language features is required. +GCC_REQD+= 4.8 + # included in third_party #.include "../../devel/googletest/buildlink3.mk" BUILDLINK_API_DEPENDS.zlib+= zlib>=1.2.0.4 Index: pkgsrc/devel/protobuf/buildlink3.mk diff -u pkgsrc/devel/protobuf/buildlink3.mk:1.8 pkgsrc/devel/protobuf/buildlink3.mk:1.9 --- pkgsrc/devel/protobuf/buildlink3.mk:1.8 Thu May 21 16:30:33 2020 +++ pkgsrc/devel/protobuf/buildlink3.mk Sun Oct 25 12:51:24 2020 @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.8 2020/05/21 16:30:33 adam Exp $ +# $NetBSD: buildlink3.mk,v 1.9 2020/10/25 12:51:24 nia Exp $ BUILDLINK_TREE+= protobuf @@ -9,6 +9,8 @@ BUILDLINK_API_DEPENDS.protobuf+= protobu BUILDLINK_ABI_DEPENDS.protobuf+= protobuf>=3.12.0 BUILDLINK_PKGSRCDIR.protobuf?= ../../devel/protobuf +GCC_REQD+= 4.8 + .include "../../devel/zlib/buildlink3.mk" .endif # PROTOBUF_BUILDLINK3_MK --_----------=_1603630284242790--