Fix shared object name for loading libdecor (#18541)
Some checks are pending
CI 3DS / build (push) Waiting to run
CI Android / build (push) Waiting to run
CI DOS/DJGPP / build (push) Waiting to run
CI Emscripten / build (push) Waiting to run
CI GameCube / build (push) Waiting to run
CI Linux (i686) / build (push) Waiting to run
CI Windows (MSVC) / msvc (Debug, x64, 2019) (push) Waiting to run
CI Windows (MSVC) / msvc (Debug, x64, 2022) (push) Waiting to run
CI Windows (MSVC) / msvc (Release, x64, 2019) (push) Waiting to run
CI Windows (MSVC) / msvc (Release, x64, 2022) (push) Waiting to run
CI Windows (MSVC) / msvc (Release, x64, UWP) (push) Waiting to run
CI Windows (MSVC) / msvc (ReleaseAngle, x64, UWP) (push) Waiting to run
CI Windows (MSYS2) / msys2-build-test (windows-11-arm, CLANGARM64) (push) Waiting to run
CI Windows (MSYS2) / msys2-build-test (windows-latest, CLANG64) (push) Waiting to run
CI Windows (MSYS2) / msys2-build-test (windows-latest, MINGW64) (push) Waiting to run
CI Windows (MSYS2) / msys2-build-test (windows-latest, UCRT64) (push) Waiting to run
CI macOS / build (push) Waiting to run
CI Miyoo ARM32 / build (push) Waiting to run
CI PS2 / build (push) Waiting to run
CI PS3/PSL1GHT / build (push) Waiting to run
CI PS4/ORBIS / build (push) Waiting to run
CI PSP / build (push) Waiting to run
CI PSVita / build (push) Waiting to run
CI RS90 Odbeta MIPS32 / build (push) Waiting to run
CI RetroFW MIPS32 / build (push) Waiting to run
CI Switch/libnx / build (push) Waiting to run
CI Wii / build (push) Waiting to run
CI WiiU / build (push) Waiting to run
CI Windows ARM64 (MSVC) / msvc (Debug, ARM64, 2022) (push) Waiting to run
CI Windows ARM64 (MSVC) / msvc (Release, ARM64, 2022) (push) Waiting to run
CI Windows i686 (MXE) / build (push) Waiting to run
CI Windows x64 (MXE) / build (push) Waiting to run
RetroArch CI / linux-c89 (push) Waiting to run
CI webOS / build (push) Waiting to run

This commit is contained in:
kya8 2025-12-26 10:53:59 +08:00 committed by GitHub
parent 8ff4249f73
commit 4b74434a30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -724,7 +724,7 @@ bool gfx_ctx_wl_init_common(
#ifdef HAVE_LIBDECOR_H
#ifdef HAVE_DYLIB
if ((wl->libdecor = dylib_load("libdecor-0.so")))
if ((wl->libdecor = dylib_load("libdecor-0.so.0")))
{
#define RA_WAYLAND_SYM(rc,fn,params) wl->fn = (rc (*) params)dylib_proc(wl->libdecor, #fn);
#include "wayland/libdecor_sym.h"