Received: by mail.netbsd.org (Postfix, from userid 605) id 5137184D8D; Mon, 15 May 2023 18:37:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 80A7284D3B for ; Mon, 15 May 2023 18:37:27 +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 TtFCzIrbE6_7 for ; Mon, 15 May 2023 18:37:27 +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 C7CDE84CFC for ; Mon, 15 May 2023 18:37:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id BFF4BFA87; Mon, 15 May 2023 18:37:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168417584616340" MIME-Version: 1.0 Date: Mon, 15 May 2023 18:37:26 +0000 From: "S.P.Zeidler" Subject: CVS commit: [pkgsrc-2023Q1] pkgsrc/security/gnutls To: pkgsrc-changes@NetBSD.org Reply-To: spz@netbsd.org X-Mailer: log_accum Message-Id: <20230515183726.BFF4BFA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_168417584616340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: spz Date: Mon May 15 18:37:26 UTC 2023 Modified Files: pkgsrc/security/gnutls [pkgsrc-2023Q1]: Makefile Log Message: Pullup ticket #6759 - requested by he security/gnutls: build fix Revisions pulled up: - security/gnutls/Makefile 1.240 ------------------------------------------------------------------- Module Name: pkgsrc Committed By: he Date: Sun May 14 08:11:51 UTC 2023 Modified Files: pkgsrc/security/gnutls: Makefile Log Message: gnutls: require minimum gcc 6, and indicte use of c++11. The in-tree compiler on NetBSD/macppc 8.0 (gcc 5 based) fails to build this package, with what now looks like a bug in gcc 5. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.239 -r1.240 pkgsrc/security/gnutls/Makefile To generate a diff of this commit: cvs rdiff -u -r1.238 -r1.238.2.1 pkgsrc/security/gnutls/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168417584616340 Content-Disposition: inline Content-Length: 708 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/gnutls/Makefile diff -u pkgsrc/security/gnutls/Makefile:1.238 pkgsrc/security/gnutls/Makefile:1.238.2.1 --- pkgsrc/security/gnutls/Makefile:1.238 Wed Feb 15 07:40:52 2023 +++ pkgsrc/security/gnutls/Makefile Mon May 15 18:37:26 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.238 2023/02/15 07:40:52 nikita Exp $ +# $NetBSD: Makefile,v 1.238.2.1 2023/05/15 18:37:26 spz Exp $ DISTNAME= gnutls-3.8.0 PKGREVISION= 1 @@ -15,7 +15,9 @@ DEPENDS+= mozilla-rootcerts-[0-9]*:../.. PLIST_SRC= PLIST -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++11 +GCC_REQD+= 6 + USE_LIBTOOL= yes USE_TOOLS+= gmake gsed perl pkg-config bash USE_TOOLS+= msgfmt msgmerge xgettext --_----------=_168417584616340--