mirror of
https://gitlab.com/CinnamonSlackBuilds/csb.git
synced 2024-12-25 21:59:21 +01:00
metacity: Fix vulkan headers
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackware-id.org>
This commit is contained in:
parent
6467aa6460
commit
54eb4b6420
2 changed files with 29 additions and 1 deletions
26
metacity/meta-compositor-vulkan.patch
Normal file
26
metacity/meta-compositor-vulkan.patch
Normal file
|
@ -0,0 +1,26 @@
|
|||
From 99361f28c8763ea4569b5ae9876028d53ac9a234 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Alberts=20Muktup=C4=81vels?= <alberts.muktupavels@gmail.com>
|
||||
Date: Sun, 24 May 2020 13:58:51 +0300
|
||||
Subject: [PATCH] compositor-vulkan: fix build
|
||||
|
||||
VK_PHYSICAL_DEVICE_TYPE_RANGE_SIZE enum was removed in 1.2.140.
|
||||
|
||||
https://gitlab.gnome.org/GNOME/metacity/-/issues/10
|
||||
---
|
||||
src/compositor/meta-compositor-vulkan.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/src/compositor/meta-compositor-vulkan.c b/src/compositor/meta-compositor-vulkan.c
|
||||
index b87b5194..53b7b3ff 100644
|
||||
--- a/src/compositor/meta-compositor-vulkan.c
|
||||
+++ b/src/compositor/meta-compositor-vulkan.c
|
||||
@@ -810,7 +810,9 @@ device_type_to_string (VkPhysicalDeviceType type)
|
||||
return "cpu";
|
||||
break;
|
||||
|
||||
+#if VK_HEADER_VERSION < 140
|
||||
case VK_PHYSICAL_DEVICE_TYPE_RANGE_SIZE:
|
||||
+#endif
|
||||
case VK_PHYSICAL_DEVICE_TYPE_MAX_ENUM:
|
||||
default:
|
||||
break;
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
PRGNAM=metacity
|
||||
VERSION=${VERSION:-3.36.1}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_csb}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -71,6 +71,8 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
patch -p1 < $CWD/meta-compositor-vulkan.patch
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
|
|
Loading…
Reference in a new issue