Received: by mail.netbsd.org (Postfix, from userid 605) id D0CF684E48; Thu, 9 May 2019 14:49:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 58E2184E46 for ; Thu, 9 May 2019 14:49:59 +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 utefjHIqxd55 for ; Thu, 9 May 2019 14:49:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B04A084D6A for ; Thu, 9 May 2019 14:49:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AB1D4FB16; Thu, 9 May 2019 14:49:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1557413398269940" MIME-Version: 1.0 Date: Thu, 9 May 2019 14:49:58 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/libretro-dolphin To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20190509144958.AB1D4FB16@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. --_----------=_1557413398269940 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu May 9 14:49:58 UTC 2019 Modified Files: pkgsrc/emulators/libretro-dolphin: Makefile Log Message: libretro-dolphin: Support jitless platforms. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/emulators/libretro-dolphin/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1557413398269940 Content-Disposition: inline Content-Length: 1170 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/libretro-dolphin/Makefile diff -u pkgsrc/emulators/libretro-dolphin/Makefile:1.5 pkgsrc/emulators/libretro-dolphin/Makefile:1.6 --- pkgsrc/emulators/libretro-dolphin/Makefile:1.5 Thu Apr 25 07:32:52 2019 +++ pkgsrc/emulators/libretro-dolphin/Makefile Thu May 9 14:49:58 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2019/04/25 07:32:52 maya Exp $ +# $NetBSD: Makefile,v 1.6 2019/05/09 14:49:58 nia Exp $ DISTNAME= libretro-dolphin-20180827 PKGREVISION= 2 @@ -32,6 +32,14 @@ CMAKE_ARGS+= -DENABLE_SDL=OFF CMAKE_ARGS+= -DENABLE_EVDEV=OFF CMAKE_ARGS+= -DLIBRETRO=ON +.include "../../mk/bsd.prefs.mk" + +ONLY_FOR_PLATFORM= ${LITTLEENDIANPLATFORMS} + +.if ${MACHINE_ARCH} != "x86_64" && ${MACHINE_ARCH} != "aarch64" +CMAKE_ARGS+= -DENABLE_GENERIC=1 +.endif + LDFLAGS.NetBSD+= -lrt INSTALLATION_DIRS+= ${PREFIX}/lib/libretro @@ -40,8 +48,6 @@ do-install: ${INSTALL_LIB} ${WRKSRC}/dolphin_libretro.so \ ${DESTDIR}${PREFIX}/lib/libretro/dolphin_libretro.so -.include "../../mk/bsd.prefs.mk" - .if ${OPSYS} != "Darwin" .include "../../archivers/lzo/buildlink3.mk" .include "../../devel/libusb1/buildlink3.mk" --_----------=_1557413398269940--