Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EF0DD85292 for ; Fri, 29 Dec 2023 17:18:38 +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 G_LDAFbxun0e for ; Fri, 29 Dec 2023 17:18:38 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 71E8A84E99 for ; Fri, 29 Dec 2023 17:18:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 68199FA42; Fri, 29 Dec 2023 17:18:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1703870318180430" MIME-Version: 1.0 Date: Fri, 29 Dec 2023 17:18:38 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/www/firefox To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20231229171838.68199FA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1703870318180430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: he Date: Fri Dec 29 17:18:38 UTC 2023 Modified Files: pkgsrc/www/firefox: Makefile mozilla-common.mk Log Message: firefox: on i386, use -mstackrealign also in CFLAGS. This forces stack re-alignment, so that we don't get segfault when doing movdqa %xmm7,(%esp) and %esp is not 16-byte aligned. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.582 -r1.583 pkgsrc/www/firefox/Makefile cvs rdiff -u -r1.271 -r1.272 pkgsrc/www/firefox/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1703870318180430 Content-Disposition: inline Content-Length: 1331 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/firefox/Makefile diff -u pkgsrc/www/firefox/Makefile:1.582 pkgsrc/www/firefox/Makefile:1.583 --- pkgsrc/www/firefox/Makefile:1.582 Fri Dec 1 15:05:28 2023 +++ pkgsrc/www/firefox/Makefile Fri Dec 29 17:18:38 2023 @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.582 2023/12/01 15:05:28 ryoon Exp $ +# $NetBSD: Makefile,v 1.583 2023/12/29 17:18:38 he Exp $ FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR} MOZ_BRANCH= 120.0 MOZ_BRANCH_MINOR= .1 +PKGREVISION= 1 DISTNAME= firefox-${FIREFOX_VER}.source PKGNAME= ${DISTNAME:S/.source//:S/b/beta/:S/esr//} Index: pkgsrc/www/firefox/mozilla-common.mk diff -u pkgsrc/www/firefox/mozilla-common.mk:1.271 pkgsrc/www/firefox/mozilla-common.mk:1.272 --- pkgsrc/www/firefox/mozilla-common.mk:1.271 Thu Nov 23 05:03:38 2023 +++ pkgsrc/www/firefox/mozilla-common.mk Fri Dec 29 17:18:38 2023 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.271 2023/11/23 05:03:38 snj Exp $ +# $NetBSD: mozilla-common.mk,v 1.272 2023/12/29 17:18:38 he Exp $ # # common Makefile fragment for mozilla packages based on gecko 2.0. # @@ -70,6 +70,7 @@ USE_TOOLS+= tar .if ${MACHINE_ARCH} == "i386" # This is required for SSE2 code under i386. CXXFLAGS+= -mstackrealign +CFLAGS+= -mstackrealign .endif CHECK_PORTABILITY_SKIP+= ${MOZILLA_DIR}security/nss/tests/*/*.sh --_----------=_1703870318180430--