Received: by mail.netbsd.org (Postfix, from userid 605) id 771E584DE0; Wed, 17 Jun 2020 13:38:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F41AE84DA8 for ; Wed, 17 Jun 2020 13:38:14 +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 TZ-7jzlyojir for ; Wed, 17 Jun 2020 13:38: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 55DC784D2D for ; Wed, 17 Jun 2020 13:38:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4FEDAFB28; Wed, 17 Jun 2020 13:38:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1592401094183640" MIME-Version: 1.0 Date: Wed, 17 Jun 2020 13:38:14 +0000 From: "Benny Siegert" Subject: CVS commit: [pkgsrc-2020Q1] pkgsrc/net/qbittorrent To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20200617133814.4FEDAFB28@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. --_----------=_1592401094183640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Wed Jun 17 13:38:14 UTC 2020 Modified Files: pkgsrc/net/qbittorrent [pkgsrc-2020Q1]: Makefile Log Message: Pullup ticket #6239 - requested by nia net/qbittorrent: i386 build fix Revisions pulled up: - net/qbittorrent/Makefile 1.14 --- Module Name: pkgsrc Committed By: nia Date: Sat Jun 13 11:21:29 UTC 2020 Modified Files: pkgsrc/net/qbittorrent: Makefile Log Message: qbittorrent: needs 64-bit atomic ops To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.6.2.1 pkgsrc/net/qbittorrent/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1592401094183640 Content-Disposition: inline Content-Length: 848 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.6 pkgsrc/net/qbittorrent/Makefile:1.6.2.1 --- pkgsrc/net/qbittorrent/Makefile:1.6 Tue Mar 10 22:10:47 2020 +++ pkgsrc/net/qbittorrent/Makefile Wed Jun 17 13:38:14 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2020/03/10 22:10:47 wiz Exp $ +# $NetBSD: Makefile,v 1.6.2.1 2020/06/17 13:38:14 bsiegert Exp $ DISTNAME= qbittorrent-4.2.1 PKGREVISION= 4 @@ -16,11 +16,17 @@ USE_CMAKE= yes USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ -# C++11 -GCC_REQD+= 4.7 - CMAKE_ARGS+= -DCMAKE_BUILD_TYPE="Release" +GCC_REQD+= 6 # c++14 + +.include "../../mk/bsd.prefs.mk" + +# 64 bit atomic ops are required +.if ${MACHINE_ARCH} == "i386" +CXXFLAGS+= -march=i586 +.endif + LDFLAGS.NetBSD+= -ljemalloc .include "../../devel/boost-libs/buildlink3.mk" --_----------=_1592401094183640--