Received: by mail.netbsd.org (Postfix, from userid 605) id 83FD484DCA; Sun, 31 Mar 2019 00:35:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0AA0784DC4 for ; Sun, 31 Mar 2019 00:35:06 +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 mWUtLln4CxJf for ; Sun, 31 Mar 2019 00:35:05 +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 5B9D584D7D for ; Sun, 31 Mar 2019 00:35:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4AFC1FB16; Sun, 31 Mar 2019 00:35:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1553992505167100" MIME-Version: 1.0 Date: Sun, 31 Mar 2019 00:35:05 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/x11/vte3 To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20190331003505.4AFC1FB16@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. --_----------=_1553992505167100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Sun Mar 31 00:35:05 UTC 2019 Modified Files: pkgsrc/x11/vte3: Makefile Log Message: x11/vte3: Require c++14 and hence gcc 5 With gcc 4.8, the configure script errors out about c++14. The build works with gcc5 or gcc6, so set GCC_REQD to 5. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/x11/vte3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1553992505167100 Content-Disposition: inline Content-Length: 695 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/vte3/Makefile diff -u pkgsrc/x11/vte3/Makefile:1.18 pkgsrc/x11/vte3/Makefile:1.19 --- pkgsrc/x11/vte3/Makefile:1.18 Thu Mar 7 21:36:06 2019 +++ pkgsrc/x11/vte3/Makefile Sun Mar 31 00:35:05 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2019/03/07 21:36:06 jmcneill Exp $ +# $NetBSD: Makefile,v 1.19 2019/03/31 00:35:05 gdt Exp $ DISTNAME= vte-0.54.3 PKGNAME= ${DISTNAME:S/vte/vte3/} @@ -16,7 +16,9 @@ PKGCONFIG_OVERRIDE+= vte.pc.in USE_LIBTOOL= yes GNU_CONFIGURE= yes USE_TOOLS+= gmake intltool msgfmt pkg-config bash -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++14 +# for c++14 \todo +GCC_REQD= 5 BUILDLINK_TRANSFORM+= rm:-Werror=format=2 --_----------=_1553992505167100--