Received: by mail.netbsd.org (Postfix, from userid 605) id 67DBC84D1B; Sun, 13 Jun 2021 06:04:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A403984D12 for ; Sun, 13 Jun 2021 06:04:18 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 8FO6u8M7RQlu for ; Sun, 13 Jun 2021 06:04:18 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 043F584CEA for ; Sun, 13 Jun 2021 06:04:17 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EC557FA95; Sun, 13 Jun 2021 06:04:17 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1623564257178410" MIME-Version: 1.0 Date: Sun, 13 Jun 2021 06:04:17 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210613060417.EC557FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1623564257178410 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jun 13 06:04:17 UTC 2021 Modified Files: pkgsrc/mk: atomic64.mk Log Message: add 32-bit sparc to the list of libatomic archs To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/mk/atomic64.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1623564257178410 Content-Disposition: inline Content-Length: 797 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/atomic64.mk diff -u pkgsrc/mk/atomic64.mk:1.3 pkgsrc/mk/atomic64.mk:1.4 --- pkgsrc/mk/atomic64.mk:1.3 Fri May 7 11:32:01 2021 +++ pkgsrc/mk/atomic64.mk Sun Jun 13 06:04:17 2021 @@ -1,4 +1,4 @@ -# $NetBSD: atomic64.mk,v 1.3 2021/05/07 11:32:01 rin Exp $ +# $NetBSD: atomic64.mk,v 1.4 2021/06/13 06:04:17 nia Exp $ # # This Makefile fragment is included by packages that require 64-bit atomic # operations, and will attempt to set the appropriate architecture-specific @@ -17,7 +17,9 @@ CXXFLAGS+= -march=i586 . endif .endif -.if ${MACHINE_ARCH} == "m68k" || ${MACHINE_ARCH} == "powerpc" +.if ${MACHINE_ARCH} == "m68k" || \ + ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE_ARCH} == "sparc" . include "../../devel/libatomic/buildlink3.mk" .endif --_----------=_1623564257178410--