Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_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 74ABD1A923A for ; Sat, 26 Dec 2020 17:02:39 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id ABFA7850F6; Sat, 26 Dec 2020 17:02:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E8764850F4 for ; Sat, 26 Dec 2020 17:02:37 +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 x57rItf5AnLQ for ; Sat, 26 Dec 2020 17:02:37 +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 4853184C71 for ; Sat, 26 Dec 2020 17:02:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 41F60FA9D; Sat, 26 Dec 2020 17:02:37 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1609002157290130" MIME-Version: 1.0 Date: Sat, 26 Dec 2020 17:02:37 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/inkscape To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201226170237.41F60FA9D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1609002157290130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Dec 26 17:02:37 UTC 2020 Modified Files: pkgsrc/graphics/inkscape: Makefile Log Message: inkscape: Requires 64-bit atomic operations. Noticed by John D. Baker on pkgsrc-users. To generate a diff of this commit: cvs rdiff -u -r1.221 -r1.222 pkgsrc/graphics/inkscape/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1609002157290130 Content-Disposition: inline Content-Length: 958 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/inkscape/Makefile diff -u pkgsrc/graphics/inkscape/Makefile:1.221 pkgsrc/graphics/inkscape/Makefile:1.222 --- pkgsrc/graphics/inkscape/Makefile:1.221 Fri Dec 4 20:45:22 2020 +++ pkgsrc/graphics/inkscape/Makefile Sat Dec 26 17:02:37 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.221 2020/12/04 20:45:22 nia Exp $ +# $NetBSD: Makefile,v 1.222 2020/12/26 17:02:37 nia Exp $ DISTNAME= inkscape-1.0.1 PKGREVISION= 3 @@ -75,6 +75,15 @@ MANCOMPRESSED= yes CMAKE_ARGS+= -DIntl_INCLUDE_DIR=${BUILDLINK_PREFIX.gettext}/include .endif +.if ${MACHINE_ARCH} == "i386" +CFLAGS+= -march=i586 +CXXFLAGS+= -march=i586 +.endif + +.if ${MACHINE_ARCH} == "powerpc" +. include "../../devel/libatomic/buildlink3.mk" +.endif + # There exists some race condition in create_default_templates.py that # makes default.es_MX.svg sometimes not get installed. # (gettext translation file dependency not correctly expressed in cmake?) --_----------=_1609002157290130--