0
0
mirror of https://github.com/termux-pacman/glibc-packages.git synced 2024-11-27 06:08:57 +00:00
glibc-packages/gpkg/libwayland/setdirs.patch
Askorbinovaya Kislota 16691125d7
adding mesa and other graphics packages (#164)
gpkg/libwayland
gpkg/libwayland-protocols
gpkg/vulkan-tools
gpkg/mesa-demos
gpkg/opengl
gpkg/freeglut
gpkg/glu
gpkg/glslang
gpkg/spirv-tools
gpkg/spirv-headers
gpkg/glmark2
gpkg/vkmark
gpkg/glm
gpkg/xcb-util-wm
gpkg/assimp
gpkg/alsa-lib
gpkg/libomxil-bellagio
gpkg/libva
gpkg/libvdpau
gpkg/vulkan-volk
gpkg/libepoxy
gpkg/libclc
gpkg/spirv-llvm-translator

Co-authored-by: Maxython <mixython@gmail.com>
2024-02-05 23:52:12 +03:00

45 lines
1.6 KiB
Diff

--- wayland-1.22.0/cursor/os-compatibility.c 2023-04-04 10:58:31.000000000 +0300
+++ wayland-1.22.0/cursor/os-compatibility.c.patch 2023-09-30 09:52:58.113123276 +0300
@@ -138,8 +138,7 @@
{
path = getenv("XDG_RUNTIME_DIR");
if (!path || path[0] != '/') {
- errno = ENOENT;
- return -1;
+ path = "@TERMUX_PREFIX_CLASSICAL@/tmp";
}
name_size = strlen(path) + sizeof(template);
--- wayland-1.22.0/src/wayland-client.c 2023-04-04 10:58:31.000000000 +0300
+++ wayland-1.22.0/src/wayland-client.c.patch 2023-09-30 09:55:33.523123217 +0300
@@ -1109,11 +1109,7 @@
runtime_dir = getenv("XDG_RUNTIME_DIR");
if (((!runtime_dir || runtime_dir[0] != '/') && !path_is_absolute)) {
- wl_log("error: XDG_RUNTIME_DIR is invalid or not set in the environment.\n");
- /* to prevent programs reporting
- * "failed to create display: Success" */
- errno = ENOENT;
- return -1;
+ runtime_dir = "@TERMUX_PREFIX_CLASSICAL@/tmp";
}
fd = wl_os_socket_cloexec(PF_LOCAL, SOCK_STREAM, 0);
--- wayland-1.22.0/src/wayland-server.c 2023-04-04 10:58:31.000000000 +0300
+++ wayland-1.22.0/src/wayland-server.c.patch 2023-09-30 09:57:22.473123175 +0300
@@ -1629,13 +1629,7 @@
if (name[0] != '/') {
runtime_dir = getenv("XDG_RUNTIME_DIR");
if (!runtime_dir || runtime_dir[0] != '/') {
- wl_log("error: XDG_RUNTIME_DIR is invalid or not set in"
- " the environment\n");
-
- /* to prevent programs reporting
- * "failed to add socket: Success" */
- errno = ENOENT;
- return -1;
+ runtime_dir = "@TERMUX_PREFIX_CLASSICAL@/tmp";
}
separator = "/";
}