Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3CFB184D68 for ; Wed, 24 May 2023 15:51:20 +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 fPro3-gjiwVi for ; Wed, 24 May 2023 15:51:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8992984D4E for ; Wed, 24 May 2023 15:51:19 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ABF1FFA87; Wed, 24 May 2023 15:51:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168494347851340" MIME-Version: 1.0 Date: Wed, 24 May 2023 15:51:18 +0000 From: "David Brownlee" Subject: CVS commit: pkgsrc/www/arcticfox To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: abs@netbsd.org X-Mailer: log_accum Message-Id: <20230524155118.ABF1FFA87@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168494347851340 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: abs Date: Wed May 24 15:51:18 UTC 2023 Modified Files: pkgsrc/www/arcticfox: Makefile Log Message: Set SSP_SUPPORTED=no for sparc64 To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/www/arcticfox/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168494347851340 Content-Disposition: inline Content-Length: 859 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/arcticfox/Makefile diff -u pkgsrc/www/arcticfox/Makefile:1.25 pkgsrc/www/arcticfox/Makefile:1.26 --- pkgsrc/www/arcticfox/Makefile:1.25 Sun May 21 18:35:57 2023 +++ pkgsrc/www/arcticfox/Makefile Wed May 24 15:51:18 2023 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.25 2023/05/21 18:35:57 abs Exp $ +# $NetBSD: Makefile,v 1.26 2023/05/24 15:51:18 abs Exp $ DISTNAME= arcticfox-41.0 +PKGREVISION= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_GITHUB:=rmottola/} GITHUB_PROJECT= Arctic-Fox @@ -60,6 +61,11 @@ CONFIGURE_ARGS+= --with-system-zlib .include "../../mk/bsd.prefs.mk" +.if ${MACHINE_ARCH} == "sparc64" +# Without this NetBSD/sparc64 starts, but crashes on some sites +SSP_SUPPORTED=no +.endif + .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64" TOOL_DEPENDS+= yasm>=1.1:../../devel/yasm .endif --_----------=_168494347851340--