Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-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 C8CBA1A921F for ; Fri, 13 Nov 2020 16:15:57 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 0A2A084DD3; Fri, 13 Nov 2020 16:15:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 420DE84DD2 for ; Fri, 13 Nov 2020 16:15:56 +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 EM4o52Lw2gtk for ; Fri, 13 Nov 2020 16:15:55 +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 2271084DCB for ; Fri, 13 Nov 2020 16:15:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 16A1DFB28; Fri, 13 Nov 2020 16:15:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1605284155148040" MIME-Version: 1.0 Date: Fri, 13 Nov 2020 16:15:55 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/libretro-parallel-n64 To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201113161555.16A1DFB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1605284155148040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Fri Nov 13 16:15:55 UTC 2020 Modified Files: pkgsrc/emulators/libretro-parallel-n64: Makefile Log Message: libretro-parallel-n64: Needs 64-bit atomic ops on powerpc To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/libretro-parallel-n64/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1605284155148040 Content-Disposition: inline Content-Length: 803 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/libretro-parallel-n64/Makefile diff -u pkgsrc/emulators/libretro-parallel-n64/Makefile:1.1 pkgsrc/emulators/libretro-parallel-n64/Makefile:1.2 --- pkgsrc/emulators/libretro-parallel-n64/Makefile:1.1 Sun May 31 16:03:04 2020 +++ pkgsrc/emulators/libretro-parallel-n64/Makefile Fri Nov 13 16:15:54 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2020/05/31 16:03:04 nia Exp $ +# $NetBSD: Makefile,v 1.2 2020/11/13 16:15:54 nia Exp $ DISTNAME= libretro-parallel-n64-20200528 CATEGORIES= emulators @@ -36,6 +36,10 @@ MAKE_FLAGS+= WITH_DYNAREC= CFLAGS+= -DNO_ASM .endif +.if ${MACHINE_ARCH} == "powerpc" +.include "../../devel/libatomic/buildlink3.mk" +.endif + BUILDLINK_TRANSFORM.SunOS+= rm:-Wl,--version-script=./libretro/link.T .include "options.mk" --_----------=_1605284155148040--