GHOST/Wayland: correct the library path for libwayland-egl

Systems without `libwayland-egl.so` (Fedora 37 beta) failed to start,
as the name `libwayland-egl.so.0` wasn't correct.
This commit is contained in:
Campbell Barton 2022-10-11 17:08:18 +11:00
parent 9cd99684b0
commit 70ef334f08
Notes: blender-bot 2023-03-29 13:24:42 +02:00
Referenced by issue #101715, Blender 3.4.0 Alpha does not use Wayland under Linux yet...
Referenced by issue #106264, Fedora/Wayland : color picking broken
Referenced by issue #106265, Webhook test issue
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ bool wayland_dynload_egl_init(const bool verbose)
{
/* Library paths. */
const char *paths[] = {
"libwayland-egl.so.0",
"libwayland-egl.so.1",
"libwayland-egl.so",
};
const int paths_num = sizeof(paths) / sizeof(*paths);