Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 106BF84F9B for ; Thu, 16 Nov 2023 09:36:46 +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 6PkB_XCvUkb5 for ; Thu, 16 Nov 2023 09:36:45 +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 5881F84CC9 for ; Thu, 16 Nov 2023 09:36:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 47251FA3D; Thu, 16 Nov 2023 09:36:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1700127405127750" MIME-Version: 1.0 Date: Thu, 16 Nov 2023 09:36:45 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games/amnesia-tdd To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20231116093645.47251FA3D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1700127405127750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Nov 16 09:36:45 UTC 2023 Modified Files: pkgsrc/games/amnesia-tdd: Makefile Log Message: amnesia-ttd: Disable use of SIMD on non-amd64 To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/games/amnesia-tdd/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1700127405127750 Content-Disposition: inline Content-Length: 848 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/amnesia-tdd/Makefile diff -u pkgsrc/games/amnesia-tdd/Makefile:1.5 pkgsrc/games/amnesia-tdd/Makefile:1.6 --- pkgsrc/games/amnesia-tdd/Makefile:1.5 Sat Oct 21 17:10:12 2023 +++ pkgsrc/games/amnesia-tdd/Makefile Thu Nov 16 09:36:45 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2023/10/21 17:10:12 gdt Exp $ +# $NetBSD: Makefile,v 1.6 2023/11/16 09:36:45 nia Exp $ DISTNAME= amnesia-tdd-0.3.2 PKGREVISION= 3 @@ -23,6 +23,12 @@ CMAKE_ARGS+= ./amnesia/src USE_CXX_FEATURES+= c++11 FORCE_CXX_STD= c++11 +.include "../../mk/bsd.prefs.mk" +.if ${MACHINE_ARCH} != "x86_64" +# Disables SSE use in HPL2/dependencies/Newton +CFLAGS+= -D_SCALAR_ARITHMETIC_ONLY=1 +.endif + .include "../../audio/openal-soft/buildlink3.mk" .include "../../devel/SDL2/buildlink3.mk" .include "../../devel/devIL/buildlink3.mk" --_----------=_1700127405127750--