summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Stransky <stransky@redhat.com>2021-01-22 11:20:50 +0100
committerMartin Stransky <stransky@redhat.com>2021-01-22 11:20:50 +0100
commit96a77865b82577898d93dab222a04a33cff907be (patch)
tree731ae5a894afb045b3c882129915b87970bd65a0
parentDisable crashreporter when building without debuginfo (diff)
downloadlibrewolf-fedora-ff-96a77865b82577898d93dab222a04a33cff907be.tar.gz
librewolf-fedora-ff-96a77865b82577898d93dab222a04a33cff907be.tar.bz2
librewolf-fedora-ff-96a77865b82577898d93dab222a04a33cff907be.zip
Removed mzbz#1645695 as it causes a popup regression
-rw-r--r--firefox.spec2
-rw-r--r--mozilla-1645695.patch14
-rw-r--r--mozilla-1673202.patch16
3 files changed, 0 insertions, 32 deletions
diff --git a/firefox.spec b/firefox.spec
index befebe9..304d4e4 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -224,7 +224,6 @@ Patch418: mozilla-1556931-s390x-hidden-syms.patch
Patch422: mozilla-1631061.patch
Patch423: mozilla-1681107.patch
Patch424: firefox-wayland-fix-mzbz-1642949-regression.patch
-Patch425: mozilla-1645695.patch
Patch426: mozilla-1687931.patch
# PGO/LTO patches
@@ -434,7 +433,6 @@ This package contains results of tests executed during build.
%patch423 -p1 -b .1681107
%patch424 -p1 -b .fix-mzbz-1642949-regression
-%patch425 -p1 -b .1645695
%patch426 -p1 -b .1687931
# PGO patches
diff --git a/mozilla-1645695.patch b/mozilla-1645695.patch
deleted file mode 100644
index feaae4a..0000000
--- a/mozilla-1645695.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/widget/gtk/nsWindow.cpp b/widget/gtk/nsWindow.cpp
---- a/widget/gtk/nsWindow.cpp
-+++ b/widget/gtk/nsWindow.cpp
-@@ -1768,7 +1768,8 @@
- }
- #endif
-
-- if (!g_signal_handler_find(
-+ if (isWidgetVisible &&
-+ !g_signal_handler_find(
- gdkWindow, G_SIGNAL_MATCH_FUNC, 0, 0, nullptr,
- FuncToGpointer(NativeMoveResizeWaylandPopupCallback), this)) {
- g_signal_connect(gdkWindow, "moved-to-rect",
-
diff --git a/mozilla-1673202.patch b/mozilla-1673202.patch
deleted file mode 100644
index b8695a1..0000000
--- a/mozilla-1673202.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff -up firefox-82.0/security/sandbox/linux/SandboxFilter.cpp.1673202 firefox-82.0/security/sandbox/linux/SandboxFilter.cpp
---- firefox-82.0/security/sandbox/linux/SandboxFilter.cpp.1673202 2020-10-27 10:40:54.903158025 +0100
-+++ firefox-82.0/security/sandbox/linux/SandboxFilter.cpp 2020-10-27 10:43:19.024883597 +0100
-@@ -246,7 +246,11 @@ class SandboxPolicyCommon : public Sandb
-
- if (fd != AT_FDCWD && (flags & AT_EMPTY_PATH) != 0 &&
- strcmp(path, "") == 0) {
-- return ConvertError(fstatsyscall(fd, buf));
-+#ifdef __NR_fstat64
-+ return DoSyscall(__NR_fstat64, fd, buf);
-+#else
-+ return DoSyscall(__NR_fstat, fd, buf);
-+#endif
- }
-
- if (fd != AT_FDCWD && path[0] != '/') {
bgstack15