mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-30 01:12:58 +02:00
thunderbird: update to 78.8.0.
This commit is contained in:
parent
ec18a632c3
commit
4e87d25c19
2 changed files with 2 additions and 65 deletions
|
@ -1,63 +0,0 @@
|
||||||
diff --git a/xpcom/reflect/xptcall/md/unix/xptcinvoke_ppc64_linux.cpp b/xpcom/reflect/xptcall/md/unix/xptcinvoke_ppc64_linux.cpp
|
|
||||||
--- xpcom/reflect/xptcall/md/unix/xptcinvoke_ppc64_linux.cpp
|
|
||||||
+++ xpcom/reflect/xptcall/md/unix/xptcinvoke_ppc64_linux.cpp
|
|
||||||
@@ -91,7 +91,13 @@
|
|
||||||
if (!s->IsIndirect() && s->type == nsXPTType::T_DOUBLE) {
|
|
||||||
if (nr_fpr < FPR_COUNT) {
|
|
||||||
fpregs[nr_fpr++] = s->val.d;
|
|
||||||
- nr_gpr++;
|
|
||||||
+ // Even if we have enough FPRs, still skip space in
|
|
||||||
+ // the parameter area if we ran out of placeholder GPRs.
|
|
||||||
+ if (nr_gpr < GPR_COUNT) {
|
|
||||||
+ nr_gpr++;
|
|
||||||
+ } else {
|
|
||||||
+ d++;
|
|
||||||
+ }
|
|
||||||
} else {
|
|
||||||
*((double *)d) = s->val.d;
|
|
||||||
d++;
|
|
||||||
@@ -101,7 +107,11 @@
|
|
||||||
if (nr_fpr < FPR_COUNT) {
|
|
||||||
// Single-precision floats are passed in FPRs too.
|
|
||||||
fpregs[nr_fpr++] = s->val.f;
|
|
||||||
- nr_gpr++;
|
|
||||||
+ if (nr_gpr < GPR_COUNT) {
|
|
||||||
+ nr_gpr++;
|
|
||||||
+ } else {
|
|
||||||
+ d++;
|
|
||||||
+ }
|
|
||||||
} else {
|
|
||||||
#ifdef __LITTLE_ENDIAN__
|
|
||||||
*((float *)d) = s->val.f;
|
|
||||||
diff --git a/xpcom/reflect/xptcall/md/unix/xptcstubs_ppc64_linux.cpp b/xpcom/reflect/xptcall/md/unix/xptcstubs_ppc64_linux.cpp
|
|
||||||
--- xpcom/reflect/xptcall/md/unix/xptcstubs_ppc64_linux.cpp
|
|
||||||
+++ xpcom/reflect/xptcall/md/unix/xptcstubs_ppc64_linux.cpp
|
|
||||||
@@ -103,7 +103,13 @@
|
|
||||||
if (!param.IsOut() && type == nsXPTType::T_DOUBLE) {
|
|
||||||
if (nr_fpr < FPR_COUNT) {
|
|
||||||
dp->val.d = fpregs[nr_fpr++];
|
|
||||||
- nr_gpr++;
|
|
||||||
+ // Even if we have enough FPRs, still skip space in
|
|
||||||
+ // the parameter area if we ran out of placeholder GPRs.
|
|
||||||
+ if (nr_gpr < GPR_COUNT) {
|
|
||||||
+ nr_gpr++;
|
|
||||||
+ } else {
|
|
||||||
+ ap++;
|
|
||||||
+ }
|
|
||||||
} else {
|
|
||||||
dp->val.d = *(double*)ap++;
|
|
||||||
}
|
|
||||||
@@ -113,7 +119,11 @@
|
|
||||||
if (nr_fpr < FPR_COUNT) {
|
|
||||||
// Single-precision floats are passed in FPRs too.
|
|
||||||
dp->val.f = (float)fpregs[nr_fpr++];
|
|
||||||
- nr_gpr++;
|
|
||||||
+ if (nr_gpr < GPR_COUNT) {
|
|
||||||
+ nr_gpr++;
|
|
||||||
+ } else {
|
|
||||||
+ ap++;
|
|
||||||
+ }
|
|
||||||
} else {
|
|
||||||
#ifdef __LITTLE_ENDIAN__
|
|
||||||
dp->val.f = *(float*)ap++;
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
# THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/thunderbird-i18n".
|
# THIS PKG MUST BE SYNCHRONIZED WITH "srcpkgs/thunderbird-i18n".
|
||||||
#
|
#
|
||||||
pkgname=thunderbird
|
pkgname=thunderbird
|
||||||
version=78.7.1
|
version=78.8.0
|
||||||
revision=1
|
revision=1
|
||||||
build_helper="rust"
|
build_helper="rust"
|
||||||
short_desc="Standalone Mail/News reader"
|
short_desc="Standalone Mail/News reader"
|
||||||
|
@ -11,7 +11,7 @@ maintainer="Érico Nogueira <ericonr@disroot.org>"
|
||||||
license="MPL-2.0, GPL-2.0-or-later, LGPL-2.1-or-later"
|
license="MPL-2.0, GPL-2.0-or-later, LGPL-2.1-or-later"
|
||||||
homepage="https://www.thunderbird.net/"
|
homepage="https://www.thunderbird.net/"
|
||||||
distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.xz"
|
distfiles="${MOZILLA_SITE}/${pkgname}/releases/${version}/source/${pkgname}-${version}.source.tar.xz"
|
||||||
checksum=0ccc5a54fb2548489c9579f677cb4ff3c191b1d1fcf33bef6b1cf6eb704e385a
|
checksum=3f36fa5ffc85888eaf77afb5cdd51bdadce841b7ae0744f5f5cd147ef4975a9d
|
||||||
|
|
||||||
lib32disabled=yes
|
lib32disabled=yes
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue