Received: by mail.netbsd.org (Postfix, from userid 605) id 56D6F84E96; Sat, 6 Aug 2022 00:40:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8F38384E88 for ; Sat, 6 Aug 2022 00:40:09 +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 eyFkYkdDkmTR for ; Sat, 6 Aug 2022 00:40:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DAA9584D01 for ; Sat, 6 Aug 2022 00:40:08 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CE8C7FB1A; Sat, 6 Aug 2022 00:40:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_165974640880840" MIME-Version: 1.0 Date: Sat, 6 Aug 2022 00:40:08 +0000 From: "David H. Gutteridge" Subject: CVS commit: pkgsrc/net/libfilezilla To: pkgsrc-changes@NetBSD.org Reply-To: gutteridge@netbsd.org X-Mailer: log_accum Message-Id: <20220806004008.CE8C7FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_165974640880840 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gutteridge Date: Sat Aug 6 00:40:08 UTC 2022 Modified Files: pkgsrc/net/libfilezilla: Makefile Removed Files: pkgsrc/net/libfilezilla: hacks.mk Log Message: libfilezilla: use atomic64.mk Simplify, no need for one block in Makefile and a hacks.mk to cover fewer architectures than atomic64.mk does. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/net/libfilezilla/Makefile cvs rdiff -u -r1.1 -r0 pkgsrc/net/libfilezilla/hacks.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_165974640880840 Content-Disposition: inline Content-Length: 1001 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/libfilezilla/Makefile diff -u pkgsrc/net/libfilezilla/Makefile:1.42 pkgsrc/net/libfilezilla/Makefile:1.43 --- pkgsrc/net/libfilezilla/Makefile:1.42 Thu Jul 21 11:31:23 2022 +++ pkgsrc/net/libfilezilla/Makefile Sat Aug 6 00:40:08 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2022/07/21 11:31:23 wiz Exp $ +# $NetBSD: Makefile,v 1.43 2022/08/06 00:40:08 gutteridge Exp $ DISTNAME= libfilezilla-0.38.1 CATEGORIES= net @@ -21,14 +21,11 @@ PKGCONFIG_OVERRIDE+= lib/libfilezilla.pc # for C++17 GCC_REQD+= 8 -# As of 0.19, 64-bit atomic ops are required -.if ${MACHINE_ARCH} == "i386" -CXXFLAGS+= -march=i586 -.endif - BUILDLINK_API_DEPENDS.nettle+= nettle>=3.1 .include "../../security/nettle/buildlink3.mk" BUILDLINK_API_DEPENDS.gnutls+= gnutls>=3.5.7 .include "../../security/gnutls/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" +# As of 0.19, 64-bit atomic ops are required +.include "../../mk/atomic64.mk" .include "../../mk/bsd.pkg.mk" --_----------=_165974640880840--