Received: by mail.netbsd.org (Postfix, from userid 605) id C85D884F49; Tue, 15 Nov 2022 17:14:49 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F195D84F46 for ; Tue, 15 Nov 2022 17:14:48 +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 NFiQh2tJkvq4 for ; Tue, 15 Nov 2022 17:14:48 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4BB3084D6F for ; Tue, 15 Nov 2022 17:14:48 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 3A623FA90; Tue, 15 Nov 2022 17:14:48 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668532488214330" MIME-Version: 1.0 Date: Tue, 15 Nov 2022 17:14:48 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20221115171448.3A623FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668532488214330 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Tue Nov 15 17:14:48 UTC 2022 Modified Files: pkgsrc/mk: atomic64.mk Log Message: Also buildlink libatomic for mipsel and mipseb (32-bit ports).. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/mk/atomic64.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668532488214330 Content-Disposition: inline Content-Length: 774 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.6 pkgsrc/mk/atomic64.mk:1.7 --- pkgsrc/mk/atomic64.mk:1.6 Sun Dec 19 15:12:28 2021 +++ pkgsrc/mk/atomic64.mk Tue Nov 15 17:14:48 2022 @@ -1,4 +1,4 @@ -# $NetBSD: atomic64.mk,v 1.6 2021/12/19 15:12:28 ryoon Exp $ +# $NetBSD: atomic64.mk,v 1.7 2022/11/15 17:14:48 he Exp $ # # This Makefile fragment is included by packages that require 64-bit atomic # operations, and will attempt to set the appropriate architecture-specific @@ -17,6 +17,8 @@ CFLAGS+= -march=i586 .endif .if ${MACHINE_ARCH} == "m68k" || \ + ${MACHINE_ARCH} == "mipsel" || \ + ${MACHINE_ARCH} == "mipseb" || \ ${MACHINE_ARCH} == "powerpc" || \ ${MACHINE_ARCH} == "sparc" || \ ${MACHINE_ARCH} == "vax" --_----------=_1668532488214330--