mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
b88e2bb094
ap/slackpkg-15.0.9-noarch-1.txz: Upgraded. files/mirrors-x86*: Remove bad mirrors from list (Emmet Ford) Automatically rebuild package lists if missing (Piter PUNK) xap/seamonkey-2.53.10.1-x86_64-1.txz: Upgraded. This update contains security fixes and improvements. For more information, see: https://www.seamonkey-project.org/releases/seamonkey2.53.10.1 (* Security fix *) xap/xsnow-3.4.0-x86_64-1.txz: Upgraded.
30 lines
1.1 KiB
Diff
30 lines
1.1 KiB
Diff
From d30c921928a12fccd5085888011f899ff1c788cd Mon Sep 17 00:00:00 2001
|
|
From: Jan Beich <jbeich@FreeBSD.org>
|
|
Date: Sun, 12 Dec 2021 02:16:02 +0100
|
|
Subject: [PATCH 32/32] bmo#1745560: Fix building against >=wayland-1.20
|
|
|
|
Signed-off-by: Thomas Deutschmann <whissi@gentoo.org>
|
|
---
|
|
widget/gtk/mozwayland/mozwayland.c | 7 +++++++
|
|
1 file changed, 7 insertions(+)
|
|
|
|
diff --git a/widget/gtk/mozwayland/mozwayland.c b/widget/gtk/mozwayland/mozwayland.c
|
|
index 7a448e6321..b997c59d78 100644
|
|
--- a/widget/gtk/mozwayland/mozwayland.c
|
|
+++ b/widget/gtk/mozwayland/mozwayland.c
|
|
@@ -40,6 +40,13 @@ MOZ_EXPORT void wl_event_queue_destroy(struct wl_event_queue* queue) {}
|
|
|
|
MOZ_EXPORT void wl_proxy_marshal(struct wl_proxy* p, uint32_t opcode, ...) {}
|
|
|
|
+MOZ_EXPORT struct wl_proxy* wl_proxy_marshal_flags(
|
|
+ struct wl_proxy* proxy, uint32_t opcode,
|
|
+ const struct wl_interface* interface, uint32_t version, uint32_t flags,
|
|
+ ...) {
|
|
+ return NULL;
|
|
+}
|
|
+
|
|
MOZ_EXPORT void wl_proxy_marshal_array(struct wl_proxy* p, uint32_t opcode,
|
|
union wl_argument* args) {}
|
|
|
|
--
|
|
2.34.1
|