summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-build-against-wayland-1.20.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-build-against-wayland-1.20.patch')
-rw-r--r--meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-build-against-wayland-1.20.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-build-against-wayland-1.20.patch b/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-build-against-wayland-1.20.patch
deleted file mode 100644
index 8923334e27..0000000000
--- a/meta/recipes-graphics/libsdl2/libsdl2/0001-Fix-build-against-wayland-1.20.patch
+++ /dev/null
@@ -1,45 +0,0 @@
1From e2ade2bfc46d915cd306c63c830b81d800b2575f Mon Sep 17 00:00:00 2001
2From: David Redondo <kde@david-redondo.de>
3Date: Fri, 10 Dec 2021 16:22:34 +0100
4Subject: [PATCH] Fix build against wayland 1.20
5
6Fixes #5088
7
8Upstream-Status: Backport [https://github.com/libsdl-org/SDL/pull/5092]
9
10---
11 src/video/wayland/SDL_waylanddyn.h | 2 ++
12 src/video/wayland/SDL_waylandsym.h | 4 ++++
13 2 files changed, 6 insertions(+)
14
15diff --git a/src/video/wayland/SDL_waylanddyn.h b/src/video/wayland/SDL_waylanddyn.h
16index 13b0884..2268555 100644
17--- a/src/video/wayland/SDL_waylanddyn.h
18+++ b/src/video/wayland/SDL_waylanddyn.h
19@@ -95,6 +95,8 @@ void SDL_WAYLAND_UnloadSymbols(void);
20 #define wl_proxy_marshal_constructor_versioned (*WAYLAND_wl_proxy_marshal_constructor_versioned)
21 #define wl_proxy_set_tag (*WAYLAND_wl_proxy_set_tag)
22 #define wl_proxy_get_tag (*WAYLAND_wl_proxy_get_tag)
23+#define wl_proxy_marshal_flags (*WAYLAND_wl_proxy_marshal_flags)
24+#define wl_proxy_marshal_array_flags (*WAYLAND_wl_proxy_marshal_array_flags)
25
26 #define wl_seat_interface (*WAYLAND_wl_seat_interface)
27 #define wl_surface_interface (*WAYLAND_wl_surface_interface)
28diff --git a/src/video/wayland/SDL_waylandsym.h b/src/video/wayland/SDL_waylandsym.h
29index d6e6a76..32e47d2 100644
30--- a/src/video/wayland/SDL_waylandsym.h
31+++ b/src/video/wayland/SDL_waylandsym.h
32@@ -84,6 +84,10 @@ SDL_WAYLAND_MODULE(WAYLAND_CLIENT_1_18)
33 SDL_WAYLAND_SYM(void, wl_proxy_set_tag, (struct wl_proxy *, const char * const *))
34 SDL_WAYLAND_SYM(const char * const *, wl_proxy_get_tag, (struct wl_proxy *))
35
36+SDL_WAYLAND_MODULE(WAYLAND_CLIENT_1_20)
37+SDL_WAYLAND_SYM(struct wl_proxy*, wl_proxy_marshal_flags, (struct wl_proxy *proxy, uint32_t opcode, const struct wl_interface *interfac, uint32_t version, uint32_t flags, ...))
38+SDL_WAYLAND_SYM(struct wl_proxy*, wl_proxy_marshal_array_flags, (struct wl_proxy *proxy, uint32_t opcode, const struct wl_interface *interface, uint32_t version, uint32_t flags, union wl_argument *args))
39+
40 SDL_WAYLAND_INTERFACE(wl_seat_interface)
41 SDL_WAYLAND_INTERFACE(wl_surface_interface)
42 SDL_WAYLAND_INTERFACE(wl_shm_pool_interface)
43--
442.7.4
45