pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/firefox115



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.

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



Home | Main Index | Thread Index | Old Index