pkgsrc-Changes archive

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

CVS commit: pkgsrc/mail/thunderbird



Module Name:    pkgsrc
Committed By:   he
Date:           Fri Dec 29 17:34:38 UTC 2023

Modified Files:
        pkgsrc/mail/thunderbird: Makefile mozilla-common.mk

Log Message:
thunderbird: 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.307 -r1.308 pkgsrc/mail/thunderbird/Makefile
cvs rdiff -u -r1.12 -r1.13 pkgsrc/mail/thunderbird/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/mail/thunderbird/Makefile
diff -u pkgsrc/mail/thunderbird/Makefile:1.307 pkgsrc/mail/thunderbird/Makefile:1.308
--- pkgsrc/mail/thunderbird/Makefile:1.307      Mon Dec  4 03:46:03 2023
+++ pkgsrc/mail/thunderbird/Makefile    Fri Dec 29 17:34:38 2023
@@ -1,8 +1,9 @@
-# $NetBSD: Makefile,v 1.307 2023/12/04 03:46:03 ryoon Exp $
+# $NetBSD: Makefile,v 1.308 2023/12/29 17:34:38 he Exp $
 
 DISTNAME=      thunderbird-${TB_VER}.source
 PKGNAME=       thunderbird-${TB_VER}
 TB_VER=                115.5.1
+PKGREVISION=   1
 CATEGORIES=    mail
 MASTER_SITES=  ${MASTER_SITE_MOZILLA:=thunderbird/releases/${TB_VER}/source/}
 EXTRACT_SUFX=  .tar.xz

Index: pkgsrc/mail/thunderbird/mozilla-common.mk
diff -u pkgsrc/mail/thunderbird/mozilla-common.mk:1.12 pkgsrc/mail/thunderbird/mozilla-common.mk:1.13
--- pkgsrc/mail/thunderbird/mozilla-common.mk:1.12      Mon Dec  4 03:46:03 2023
+++ pkgsrc/mail/thunderbird/mozilla-common.mk   Fri Dec 29 17:34:38 2023
@@ -1,4 +1,4 @@
-# $NetBSD: mozilla-common.mk,v 1.12 2023/12/04 03:46:03 ryoon Exp $
+# $NetBSD: mozilla-common.mk,v 1.13 2023/12/29 17:34:38 he Exp $
 #
 # common Makefile fragment for mozilla packages based on gecko 2.0.
 #
@@ -62,6 +62,7 @@ USE_TOOLS+=           bsdtar
 .if ${MACHINE_ARCH} == "i386"
 # This is required for SSE2 code under i386.
 CXXFLAGS+=             -mstackrealign
+CFLAGS+=               -mstackrealign
 .endif
 
 CHECK_PORTABILITY_SKIP+=       ${MOZILLA_DIR}third_party/python/glean_parser/Makefile



Home | Main Index | Thread Index | Old Index