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 B15D21A921F for ; Tue, 29 Dec 2020 08:28:18 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D1F6185141; Tue, 29 Dec 2020 08:28:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1735085121 for ; Tue, 29 Dec 2020 08:28:17 +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 EB2qcAkHGWXn for ; Tue, 29 Dec 2020 08:28:16 +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 6AB0D84D1F for ; Tue, 29 Dec 2020 08:28:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5D039FA9D; Tue, 29 Dec 2020 08:28:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160923049695090" MIME-Version: 1.0 Date: Tue, 29 Dec 2020 08:28:16 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/net/qbittorrent To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201229082816.5D039FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160923049695090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Dec 29 08:28:16 UTC 2020 Modified Files: pkgsrc/net/qbittorrent: Makefile Log Message: qbittorrent: Use gnu++14 for alloca To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/net/qbittorrent/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160923049695090 Content-Disposition: inline Content-Length: 726 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/qbittorrent/Makefile diff -u pkgsrc/net/qbittorrent/Makefile:1.19 pkgsrc/net/qbittorrent/Makefile:1.20 --- pkgsrc/net/qbittorrent/Makefile:1.19 Thu Nov 26 09:32:16 2020 +++ pkgsrc/net/qbittorrent/Makefile Tue Dec 29 08:28:16 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2020/11/26 09:32:16 adam Exp $ +# $NetBSD: Makefile,v 1.20 2020/12/29 08:28:16 nia Exp $ DISTNAME= qbittorrent-4.3.1 CATEGORIES= net @@ -14,7 +14,7 @@ LICENSE= gnu-gpl-v2 USE_CMAKE= yes # c++14 mode is required; also for libtorrent # https://github.com/qbittorrent/qBittorrent/issues/11425 -USE_LANGUAGES= c c++14 +USE_LANGUAGES= c gnu++14 USE_TOOLS+= pkg-config CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release" --_----------=_160923049695090--