pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/seamonkey



Module Name:    pkgsrc
Committed By:   he
Date:           Fri Dec 29 17:24:13 UTC 2023

Modified Files:
        pkgsrc/www/seamonkey: Makefile mozilla-common.mk

Log Message:
seamonkey: 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.264 -r1.265 pkgsrc/www/seamonkey/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/www/seamonkey/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/seamonkey/Makefile
diff -u pkgsrc/www/seamonkey/Makefile:1.264 pkgsrc/www/seamonkey/Makefile:1.265
--- pkgsrc/www/seamonkey/Makefile:1.264 Tue Nov 14 14:03:05 2023
+++ pkgsrc/www/seamonkey/Makefile       Fri Dec 29 17:24:13 2023
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.264 2023/11/14 14:03:05 wiz Exp $
+# $NetBSD: Makefile,v 1.265 2023/12/29 17:24:13 he Exp $
 
 DISTNAME=      seamonkey-${SM_VER}.source
 PKGNAME=       seamonkey-${SM_VER:S/b/beta/}
-PKGREVISION=   8
+PKGREVISION=   9
 SM_VER=                2.53.16
 CATEGORIES=    www
 MASTER_SITES=  ${MASTER_SITE_MOZILLA:=seamonkey/releases/${SM_VER}/source/}

Index: pkgsrc/www/seamonkey/mozilla-common.mk
diff -u pkgsrc/www/seamonkey/mozilla-common.mk:1.21 pkgsrc/www/seamonkey/mozilla-common.mk:1.22
--- pkgsrc/www/seamonkey/mozilla-common.mk:1.21 Wed Nov 29 05:38:25 2023
+++ pkgsrc/www/seamonkey/mozilla-common.mk      Fri Dec 29 17:24:13 2023
@@ -1,4 +1,4 @@
-# $NetBSD: mozilla-common.mk,v 1.21 2023/11/29 05:38:25 dholland Exp $
+# $NetBSD: mozilla-common.mk,v 1.22 2023/12/29 17:24:13 he Exp $
 #
 # common Makefile fragment for mozilla packages based on gecko 2.0.
 #
@@ -66,6 +66,7 @@ USE_TOOLS+=           bsdtar
 .if ${MACHINE_ARCH} == "i386"
 # This is required for SSE2 code under i386.
 CXXFLAGS+=             -mstackrealign
+CFLAGS+=               -mstackrealign
 .endif
 # As of 2.53.16, packed_simd_2 is for Rust nightly only.
 CONFIGURE_ARGS+=       --disable-rust-simd



Home | Main Index | Thread Index | Old Index