Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_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 3D7D91A921F for ; Thu, 7 Apr 2022 00:31:16 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E3D7D84E6C; Thu, 7 Apr 2022 00:31:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 27E8584D2F for ; Thu, 7 Apr 2022 00:31:15 +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 edLQJGyDsJVq for ; Thu, 7 Apr 2022 00:31:14 +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 70F8184CE3 for ; Thu, 7 Apr 2022 00:31:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 6A870FB24; Thu, 7 Apr 2022 00:31:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1649291474239910" MIME-Version: 1.0 Date: Thu, 7 Apr 2022 00:31:14 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/x11/vte3 To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20220407003114.6A870FB24@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1649291474239910 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Thu Apr 7 00:31:14 UTC 2022 Modified Files: pkgsrc/x11/vte3: Makefile Log Message: vte3: un-break builds with default GCC < 10 As of 0.68, this package expects C++20, and also fails if GCC < 10 or clang < 11. (I don't see an equivalent to GCC_REQD for clang.) This isn't necessarily a satisfactory fix, but at least gets it to build again, un-breaking DE meta-pkgs like xfce4, mate, and gnome. It needs further investigation. The commit that enforces this new (high) bar in meson.build is: https://github.com/GNOME/vte/commit/eec33cce0b9359fddda35703e22bffd1f8f28852 I haven't had time to examine the code to see what C++20 features are involved. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/x11/vte3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1649291474239910 Content-Disposition: inline Content-Length: 778 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.47 pkgsrc/x11/vte3/Makefile:1.48 --- pkgsrc/x11/vte3/Makefile:1.47 Tue Apr 5 15:51:57 2022 +++ pkgsrc/x11/vte3/Makefile Thu Apr 7 00:31:14 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.47 2022/04/05 15:51:57 jperkin Exp $ +# $NetBSD: Makefile,v 1.48 2022/04/07 00:31:14 gutteridge Exp $ DISTNAME= vte-0.68.0 PKGNAME= ${DISTNAME:S/vte/vte3/} @@ -16,9 +16,9 @@ PKGCONFIG_OVERRIDE_STAGE= post-configure PKGCONFIG_OVERRIDE+= output/meson-private/vte-2.91.pc USE_TOOLS+= msgfmt pkg-config bash -USE_LANGUAGES= c c++17 -# for c++17 -GCC_REQD+= 7 +USE_LANGUAGES= c c++20 +# for c++20 +GCC_REQD+= 10 # Otherwise, this will fail on Linux distributions that don't # have libsystemd. --_----------=_1649291474239910--