Commit: 70ef334f085c0c6c328a6e04357bec7085102c21
Author: Campbell Barton
Date:   Tue Oct 11 17:08:18 2022 +1100
Branches: master
https://developer.blender.org/rB70ef334f085c0c6c328a6e04357bec7085102c21

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.

===================================================================

M       intern/wayland_dynload/intern/wayland_dynload_egl.c

===================================================================

diff --git a/intern/wayland_dynload/intern/wayland_dynload_egl.c 
b/intern/wayland_dynload/intern/wayland_dynload_egl.c
index b62adb6c90e..cfc195c0408 100644
--- a/intern/wayland_dynload/intern/wayland_dynload_egl.c
+++ b/intern/wayland_dynload/intern/wayland_dynload_egl.c
@@ -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);

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
List details, subscription details or unsubscribe:
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to