summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-xfce/recipes-xfce/xfce4-session/xfce4-session/0001-meson.build-Make-gdk-pixbuf-csource-available.patch31
-rw-r--r--meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.21.1.bb6
2 files changed, 35 insertions, 2 deletions
diff --git a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session/0001-meson.build-Make-gdk-pixbuf-csource-available.patch b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session/0001-meson.build-Make-gdk-pixbuf-csource-available.patch
new file mode 100644
index 0000000000..6cc77262f7
--- /dev/null
+++ b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session/0001-meson.build-Make-gdk-pixbuf-csource-available.patch
@@ -0,0 +1,31 @@
1From ca9457673128b4024250fe43716c6bbdfad96e96 Mon Sep 17 00:00:00 2001
2From: Mingli Yu <mingli.yu@windriver.com>
3Date: Mon, 30 Mar 2026 01:09:33 -0700
4Subject: [PATCH] meson.build: Make gdk-pixbuf-csource available
5
6Fixes:
7 ../sources/xfce4-session-4.21.1/meson.build:50:21: ERROR: Program '/usr/bin/gdk-pixbuf-csource' not found or not executable
8
9Upstream-Status: Inappropriate [oe-specific]
10
11Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
12---
13 meson.build | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16diff --git a/meson.build b/meson.build
17index 6f372e0..633a5c5 100644
18--- a/meson.build
19+++ b/meson.build
20@@ -47,7 +47,7 @@ libxfce4util = dependency('libxfce4util-1.0', version: dependency_versions['libx
21 libxfce4windowing = dependency('libxfce4windowing-0', version: dependency_versions['libxfce4windowing'])
22 xfconf = dependency('libxfconf-0', version: dependency_versions['xfce4'])
23
24-gdk_pixbuf_csource = find_program(gdk_pixbuf.get_variable(pkgconfig: 'gdk_pixbuf_csource'), required: true)
25+gdk_pixbuf_csource = find_program('gdk-pixbuf-csource', required: true)
26
27 # Feature: 'x11'
28 x11_deps = []
29--
302.49.0
31
diff --git a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.21.1.bb b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.21.1.bb
index 61a059f051..77ae5da6b8 100644
--- a/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.21.1.bb
+++ b/meta-xfce/recipes-xfce/xfce4-session/xfce4-session_4.21.1.bb
@@ -4,14 +4,16 @@ SECTION = "x11"
4LICENSE = "GPL-2.0-or-later" 4LICENSE = "GPL-2.0-or-later"
5LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" 5LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263"
6 6
7DEPENDS = "libwnck3 libsm libxfce4ui libxfce4windowing virtual/libx11" 7DEPENDS = "libwnck3 libsm libxfce4ui libxfce4windowing virtual/libx11 gdk-pixbuf-native"
8 8
9XFCE_COMPRESS_TYPE = "xz" 9XFCE_COMPRESS_TYPE = "xz"
10XFCEBASEBUILDCLASS = "meson" 10XFCEBASEBUILDCLASS = "meson"
11 11
12inherit xfce update-alternatives features_check 12inherit xfce update-alternatives features_check
13 13
14SRC_URI += "file://0001-meson.build-hard-code-path-to-iceauth.patch" 14SRC_URI += "file://0001-meson.build-hard-code-path-to-iceauth.patch \
15 file://0001-meson.build-Make-gdk-pixbuf-csource-available.patch \
16"
15SRC_URI[sha256sum] = "a8fe873fdb20366a44f1345400bfb29c2ff0cfe89dfefd852e2575464b80567c" 17SRC_URI[sha256sum] = "a8fe873fdb20366a44f1345400bfb29c2ff0cfe89dfefd852e2575464b80567c"
16 18
17REQUIRED_DISTRO_FEATURES = "x11" 19REQUIRED_DISTRO_FEATURES = "x11"