]> git.pld-linux.org Git - packages/thunderbird.git/blame - wayland-1.20.patch
add build fix for wayland 1.20 from firefox
[packages/thunderbird.git] / wayland-1.20.patch
CommitLineData
563b51bf
JP
1
2# HG changeset patch
3# User Kevin Daudt <kdaudt@alpinelinux.org>
4# Date 1639316328 0
5# Node ID f7e2cf808d303d04b1b92dc825621b2fdba5559b
6# Parent ce23c0066bacde4cef8dac8e5e8e42df6cac4bff
7Bug 1745560 - Add missing stub for wl_proxy_marshal_flags, r=stransky
8
9Firefox fails to build against wayland 1.20 because this symbol is missing
10
11Differential Revision: https://phabricator.services.mozilla.com/D133583
12
13diff --git a/widget/gtk/mozwayland/mozwayland.c b/widget/gtk/mozwayland/mozwayland.c
14--- a/widget/gtk/mozwayland/mozwayland.c
15+++ b/widget/gtk/mozwayland/mozwayland.c
16@@ -195,8 +195,15 @@ MOZ_EXPORT void wl_list_insert(struct wl
17 MOZ_EXPORT void wl_list_remove(struct wl_list* elm) {}
18
19 MOZ_EXPORT int wl_list_length(const struct wl_list* list) { return -1; }
20
21 MOZ_EXPORT int wl_list_empty(const struct wl_list* list) { return -1; }
22
23 MOZ_EXPORT void wl_list_insert_list(struct wl_list* list,
24 struct wl_list* other) {}
25+
26+MOZ_EXPORT struct wl_proxy* wl_proxy_marshal_flags(
27+ struct wl_proxy* proxy, uint32_t opcode,
28+ const struct wl_interface* interface, uint32_t version, uint32_t flags,
29+ ...) {
30+ return NULL;
31+}
32
This page took 0.040491 seconds and 4 git commands to generate.