pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/firefox



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.

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



Home | Main Index | Thread Index | Old Index