Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 24B8685291 for ; Fri, 29 Dec 2023 17:29:15 +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 9lIglVVVemvL for ; Fri, 29 Dec 2023 17:29:14 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9064484E99 for ; Fri, 29 Dec 2023 17:29:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 81492FA42; Fri, 29 Dec 2023 17:29:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1703870954221470" MIME-Version: 1.0 Date: Fri, 29 Dec 2023 17:29:14 +0000 From: "Havard Eidnes" Subject: CVS commit: pkgsrc/www/firefox115 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: he@netbsd.org X-Mailer: log_accum Message-Id: <20231229172914.81492FA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1703870954221470 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:29:14 UTC 2023 Modified Files: pkgsrc/www/firefox115: Makefile mozilla-common.mk Log Message: firefox115: on i386, use -mstackrealign also in CFLAGS. Patterned after recent change to firefox: force stack re-alignment so that you don't get a 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.10 -r1.11 pkgsrc/www/firefox115/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/firefox115/mozilla-common.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1703870954221470 Content-Disposition: inline Content-Length: 1391 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/firefox115/Makefile diff -u pkgsrc/www/firefox115/Makefile:1.10 pkgsrc/www/firefox115/Makefile:1.11 --- pkgsrc/www/firefox115/Makefile:1.10 Fri Dec 22 17:11:31 2023 +++ pkgsrc/www/firefox115/Makefile Fri Dec 29 17:29:14 2023 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.10 2023/12/22 17:11:31 abs Exp $ +# $NetBSD: Makefile,v 1.11 2023/12/29 17:29:14 he Exp $ FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR} PKGREVISION= 1 MOZ_BRANCH= 115.5 MOZ_BRANCH_MINOR= .0esr +PKGREVISION= 1 DISTNAME= firefox-${FIREFOX_VER}.source PKGNAME= ${DISTNAME:S/.source//:S/b/beta/:S/esr//:S/firefox-/firefox115-/} Index: pkgsrc/www/firefox115/mozilla-common.mk diff -u pkgsrc/www/firefox115/mozilla-common.mk:1.4 pkgsrc/www/firefox115/mozilla-common.mk:1.5 --- pkgsrc/www/firefox115/mozilla-common.mk:1.4 Thu Nov 23 12:47:01 2023 +++ pkgsrc/www/firefox115/mozilla-common.mk Fri Dec 29 17:29:14 2023 @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.4 2023/11/23 12:47:01 ryoon Exp $ +# $NetBSD: mozilla-common.mk,v 1.5 2023/12/29 17:29:14 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 --_----------=_1703870954221470--