Received: by mail.netbsd.org (Postfix, from userid 605) id 59D2684E98; Thu, 23 Jun 2022 07:10:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9304384E5B for ; Thu, 23 Jun 2022 07:10:58 +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 G4AmNiU0QCPc for ; Thu, 23 Jun 2022 07:10:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E3DFD84D84 for ; Thu, 23 Jun 2022 07:10:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7D065FB1A; Thu, 23 Jun 2022 07:12:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1655968360186570" MIME-Version: 1.0 Date: Thu, 23 Jun 2022 07:12:40 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/darktable To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20220623071240.7D065FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1655968360186570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Jun 23 07:12:40 UTC 2022 Modified Files: pkgsrc/graphics/darktable: Makefile Log Message: darktable: Remove x86-only restriction. "It looks like it should work". Debian has this at least building on aarch64 without patches. To generate a diff of this commit: cvs rdiff -u -r1.129 -r1.130 pkgsrc/graphics/darktable/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1655968360186570 Content-Disposition: inline Content-Length: 982 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/darktable/Makefile diff -u pkgsrc/graphics/darktable/Makefile:1.129 pkgsrc/graphics/darktable/Makefile:1.130 --- pkgsrc/graphics/darktable/Makefile:1.129 Thu Jun 23 07:08:36 2022 +++ pkgsrc/graphics/darktable/Makefile Thu Jun 23 07:12:40 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.129 2022/06/23 07:08:36 nia Exp $ +# $NetBSD: Makefile,v 1.130 2022/06/23 07:12:40 nia Exp $ DISTNAME= darktable-3.6.1 PKGREVISION= 3 @@ -44,9 +44,6 @@ CONFIGURE_DIRS= ../pkgsrc_build CMAKE_ARG_PATH= ${WRKSRC} LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/darktable -# Hard-coded use of SSE2 -ONLY_FOR_PLATFORM= *-*-i386 *-*-x86_64 - .include "../../mk/bsd.fast.prefs.mk" .if ${MACHINE_ARCH} == "i386" # SSE alignment issues @@ -54,6 +51,8 @@ GCC_REQD+= 4.2 CFLAGS+= -mstackrealign -msse2 -march=i686 .elif ${MACHINE_ARCH} == "x86_64" CFLAGS+= -msse2 +.else +CMAKE_ARGS+= -DBUILD_SSE2_CODEPATHS=OFF .endif CFLAGS.NetBSD+= -D_NETBSD_SOURCE --_----------=_1655968360186570--