summaryrefslogtreecommitdiff
path: root/mozilla-1580595.patch
diff options
context:
space:
mode:
Diffstat (limited to 'mozilla-1580595.patch')
-rw-r--r--mozilla-1580595.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/mozilla-1580595.patch b/mozilla-1580595.patch
index 0f9d364..7e45ef1 100644
--- a/mozilla-1580595.patch
+++ b/mozilla-1580595.patch
@@ -416,6 +416,29 @@ diff -up firefox-88.0/widget/gtk/nsWindow.h.1580595 firefox-88.0/widget/gtk/nsWi
#endif
// Upper bound on pending ConfigureNotify events to be dispatched to the
+diff -up firefox-88.0/widget/gtk/wayland/moz.build.1580595 firefox-88.0/widget/gtk/wayland/moz.build
+--- firefox-88.0/widget/gtk/wayland/moz.build.1580595 2021-04-23 11:25:30.201028672 +0200
++++ firefox-88.0/widget/gtk/wayland/moz.build 2021-04-23 11:26:20.015525447 +0200
+@@ -11,7 +11,9 @@ SOURCES += [
+ "gtk-primary-selection-protocol.c",
+ "idle-inhibit-unstable-v1-protocol.c",
+ "linux-dmabuf-unstable-v1-protocol.c",
++ "pointer-constraints-unstable-v1-protocol.c",
+ "primary-selection-unstable-v1-protocol.c",
++ "relative-pointer-unstable-v1-protocol.c",
+ "xdg-output-unstable-v1-protocol.c",
+ ]
+
+@@ -20,7 +22,9 @@ EXPORTS.mozilla.widget += [
+ "gtk-primary-selection-client-protocol.h",
+ "idle-inhibit-unstable-v1-client-protocol.h",
+ "linux-dmabuf-unstable-v1-client-protocol.h",
++ "pointer-constraints-unstable-v1-client-protocol.h",
+ "primary-selection-unstable-v1-client-protocol.h",
++ "relative-pointer-unstable-v1-client-protocol.h",
+ "va_drmcommon.h",
+ "xdg-output-unstable-v1-client-protocol.h",
+ ]
diff -up firefox-88.0/widget/gtk/wayland/pointer-constraints-unstable-v1-client-protocol.h.1580595 firefox-88.0/widget/gtk/wayland/pointer-constraints-unstable-v1-client-protocol.h
--- firefox-88.0/widget/gtk/wayland/pointer-constraints-unstable-v1-client-protocol.h.1580595 2021-04-23 10:16:59.823826750 +0200
+++ firefox-88.0/widget/gtk/wayland/pointer-constraints-unstable-v1-client-protocol.h 2021-04-23 10:16:59.823826750 +0200
@@ -1598,3 +1621,13 @@ diff -up firefox-88.0/widget/PuppetWidget.h.1580595 firefox-88.0/widget/PuppetWi
virtual void StartAsyncScrollbarDrag(
const AsyncDragMetrics& aDragMetrics) override;
+--- firefox-88.0/widget/gtk/mozgtk/mozgtk.c.old 2021-04-23 14:19:07.244820364 +0200
++++ firefox-88.0/widget/gtk/mozgtk/mozgtk.c 2021-04-23 14:19:34.228631957 +0200
+@@ -644,6 +644,7 @@ STUB(gtk_color_chooser_get_type)
+ STUB(gtk_color_chooser_set_rgba)
+ STUB(gtk_color_chooser_get_rgba)
+ STUB(gtk_color_chooser_set_use_alpha)
++STUB(gdk_wayland_device_get_wl_pointer)
+ #endif
+
+ #ifdef GTK2_SYMBOLS
bgstack15