Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 88F5584E68 for ; Sun, 9 Jul 2023 14:03:21 +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 o8M46WnbmvBI for ; Sun, 9 Jul 2023 14:03:21 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1E36684D39 for ; Sun, 9 Jul 2023 14:03:21 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1776CFBDB; Sun, 9 Jul 2023 14:03:21 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688911401106910" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 14:03:21 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/elfio To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709140321.1776CFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688911401106910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 14:03:21 UTC 2023 Modified Files: pkgsrc/devel/elfio: Makefile Log Message: elfio: Require at minimum gcc5 for std::make_unique. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/elfio/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688911401106910 Content-Disposition: inline Content-Length: 543 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/elfio/Makefile diff -u pkgsrc/devel/elfio/Makefile:1.2 pkgsrc/devel/elfio/Makefile:1.3 --- pkgsrc/devel/elfio/Makefile:1.2 Thu Mar 2 22:04:45 2023 +++ pkgsrc/devel/elfio/Makefile Sun Jul 9 14:03:20 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2023/03/02 22:04:45 fcambus Exp $ +# $NetBSD: Makefile,v 1.3 2023/07/09 14:03:20 nia Exp $ # DISTNAME= elfio-3.11 @@ -13,4 +13,7 @@ LICENSE= mit USE_CMAKE= yes USE_LANGUAGES= c c++ +# std::make_unique +GCC_REQD+= 5 + .include "../../mk/bsd.pkg.mk" --_----------=_1688911401106910--