Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package SDL2 for openSUSE:Factory checked in at 2021-12-18 20:29:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/SDL2 (Old) and /work/SRC/openSUSE:Factory/.SDL2.new.2520 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "SDL2" Sat Dec 18 20:29:20 2021 rev:37 rq:941193 version:2.0.18 Changes: -------- --- /work/SRC/openSUSE:Factory/SDL2/SDL2.changes 2021-12-12 00:56:54.538555514 +0100 +++ /work/SRC/openSUSE:Factory/.SDL2.new.2520/SDL2.changes 2021-12-18 20:29:21.818213142 +0100 @@ -1,0 +2,5 @@ +Fri Dec 17 10:40:12 UTC 2021 - Jan Engelhardt <[email protected]> + +- Add 0001-Fix-build-against-wayland-1.20.patch + +------------------------------------------------------------------- New: ---- 0001-Fix-build-against-wayland-1.20.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ SDL2.spec ++++++ --- /var/tmp/diff_new_pack.4568hb/_old 2021-12-18 20:29:23.730214204 +0100 +++ /var/tmp/diff_new_pack.4568hb/_new 2021-12-18 20:29:23.734214205 +0100 @@ -25,13 +25,15 @@ License: Zlib Group: Development/Libraries/X11 URL: http://libsdl.org/ +#Git-Clone: https://github.com/libsdl-org/SDL #DL-URL: http://libsdl.org/download-2.0.php Source: http://libsdl.org/release/%name-%version.tar.gz Source2: http://libsdl.org/release/%name-%version.tar.gz.sig Source3: %name.keyring Source4: baselibs.conf Patch1: sdl2-symvers.patch -Patch3: sdl2-khronos.patch +Patch2: sdl2-khronos.patch +Patch3: 0001-Fix-build-against-wayland-1.20.patch BuildRequires: cmake BuildRequires: gcc-c++ BuildRequires: nasm ++++++ 0001-Fix-build-against-wayland-1.20.patch ++++++ >From e2ade2bfc46d915cd306c63c830b81d800b2575f Mon Sep 17 00:00:00 2001 From: David Redondo <[email protected]> Date: Fri, 10 Dec 2021 16:22:34 +0100 Subject: [PATCH] Fix build against wayland 1.20 Fixes #5088 --- src/video/wayland/SDL_waylanddyn.h | 2 ++ src/video/wayland/SDL_waylandsym.h | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/src/video/wayland/SDL_waylanddyn.h b/src/video/wayland/SDL_waylanddyn.h index 13b0884d0..226855560 100644 --- a/src/video/wayland/SDL_waylanddyn.h +++ b/src/video/wayland/SDL_waylanddyn.h @@ -95,6 +95,8 @@ void SDL_WAYLAND_UnloadSymbols(void); #define wl_proxy_marshal_constructor_versioned (*WAYLAND_wl_proxy_marshal_constructor_versioned) #define wl_proxy_set_tag (*WAYLAND_wl_proxy_set_tag) #define wl_proxy_get_tag (*WAYLAND_wl_proxy_get_tag) +#define wl_proxy_marshal_flags (*WAYLAND_wl_proxy_marshal_flags) +#define wl_proxy_marshal_array_flags (*WAYLAND_wl_proxy_marshal_array_flags) #define wl_seat_interface (*WAYLAND_wl_seat_interface) #define wl_surface_interface (*WAYLAND_wl_surface_interface) diff --git a/src/video/wayland/SDL_waylandsym.h b/src/video/wayland/SDL_waylandsym.h index d6e6a761d..32e47d26e 100644 --- a/src/video/wayland/SDL_waylandsym.h +++ b/src/video/wayland/SDL_waylandsym.h @@ -84,6 +84,10 @@ SDL_WAYLAND_MODULE(WAYLAND_CLIENT_1_18) SDL_WAYLAND_SYM(void, wl_proxy_set_tag, (struct wl_proxy *, const char * const *)) SDL_WAYLAND_SYM(const char * const *, wl_proxy_get_tag, (struct wl_proxy *)) +SDL_WAYLAND_MODULE(WAYLAND_CLIENT_1_20) +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, ...)) +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)) + SDL_WAYLAND_INTERFACE(wl_seat_interface) SDL_WAYLAND_INTERFACE(wl_surface_interface) SDL_WAYLAND_INTERFACE(wl_shm_pool_interface) -- 2.34.1
