mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: glfw: Fix a missing path to a dlopen call.
Recent release of glfw introduced a new dlopen call to `libwayland-client.so.0´. This small fix adds this library to the list of libraries to be patched. It does not affect earlier versions. * gnu/packages/gl.scm (glfw): Add `libwayland-client.so.0' to the list of libraries to be patched. Change-Id: I9436c63f49a9b2fed18e06d593e67a593e3c6cad
This commit is contained in:
parent
e8352a158a
commit
e9a9f40ded
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
||||||
;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
|
;;; Copyright © 2023, 2024 Zheng Junjie <873216071@qq.com>
|
||||||
;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
;;; Copyright © 2024 Liliana Marie Prikler <liliana.prikler@gmail.com>
|
||||||
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
|
||||||
|
;;; Copyright © 2024 Arnaud Lechevallier <arnaud.lechevallier@free.fr>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -985,6 +986,7 @@ (define-public glfw
|
||||||
"libvulkan.so.1"
|
"libvulkan.so.1"
|
||||||
"libwayland-cursor.so.0"
|
"libwayland-cursor.so.0"
|
||||||
"libwayland-egl.so.1"
|
"libwayland-egl.so.1"
|
||||||
|
"libwayland-client.so.0"
|
||||||
"libxkbcommon.so.0"
|
"libxkbcommon.so.0"
|
||||||
"libXxf86vm.so.1"
|
"libXxf86vm.so.1"
|
||||||
"libXi.so.6"
|
"libXi.so.6"
|
||||||
|
|
Loading…
Reference in a new issue