Received: by mail.netbsd.org (Postfix, from userid 605) id 7802C84E33; Sun, 28 Jun 2020 15:20:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F3C0384E2E for ; Sun, 28 Jun 2020 15:20:26 +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 AGmTRr_ZVJOI for ; Sun, 28 Jun 2020 15:20:26 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5C54D84E2A for ; Sun, 28 Jun 2020 15:20:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 54EDFFB28; Sun, 28 Jun 2020 15:20:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159335762624260" MIME-Version: 1.0 Date: Sun, 28 Jun 2020 15:20:26 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/libretro-flycast To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200628152026.54EDFFB28@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. --_----------=_159335762624260 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jun 28 15:20:26 UTC 2020 Modified Files: pkgsrc/emulators/libretro-flycast: Makefile Log Message: libretro-flycast: ensure HOST_CPU is set To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/emulators/libretro-flycast/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159335762624260 Content-Disposition: inline Content-Length: 892 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/libretro-flycast/Makefile diff -u pkgsrc/emulators/libretro-flycast/Makefile:1.4 pkgsrc/emulators/libretro-flycast/Makefile:1.5 --- pkgsrc/emulators/libretro-flycast/Makefile:1.4 Sun Jun 28 13:30:29 2020 +++ pkgsrc/emulators/libretro-flycast/Makefile Sun Jun 28 15:20:26 2020 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.4 2020/06/28 13:30:29 nia Exp $ +# $NetBSD: Makefile,v 1.5 2020/06/28 15:20:26 nia Exp $ DISTNAME= libretro-flycast-20200529 +PKGREVISION= 1 CATEGORIES= emulators GITHUB_PROJECT= flycast GITHUB_TAG= e595af5dfbff2e49fbcb95bec5b240785c8b4f4f @@ -30,6 +31,7 @@ CXXFLAGS+= -DLOW_END .if ${MACHINE_ARCH} == "aarch64" MAKE_FLAGS+= WITH_DYNAREC=arm64 MAKE_FLAGS+= HAVE_GENERIC_JIT=0 +MAKE_FLAGS+= HOST_CPU_FLAGS=-DHOST_CPU=0x20000006 .elif ${MACHINE_ARCH} == "i386" MAKE_FLAGS+= WITH_DYNAREC=x86 MAKE_FLAGS+= HAVE_GENERIC_JIT=0 --_----------=_159335762624260--