summaryrefslogtreecommitdiffstats
path: root/meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb
diff options
context:
space:
mode:
authorKai Kang <kai.kang@windriver.com>2019-08-16 03:12:46 -0400
committerKhem Raj <raj.khem@gmail.com>2019-08-27 12:11:16 -0700
commit815739a16177939a0f25eb619c2ff844b580506f (patch)
tree994d1a34aa4779aa294ded655036426390951ace /meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb
parent585b1eac77249dd8216b460a32c7710c48dddd4f (diff)
downloadmeta-openembedded-815739a16177939a0f25eb619c2ff844b580506f.tar.gz
xfce4-datetime-setter: fix compile error and requires distro feature x11
It fails to compile xfce4-datetime-setter occasionally when system load is high: | ../git/xfce/main.c:42:10: fatal error: cc-datetime-resources.h: No such file or directory | 42 | #include "cc-datetime-resources.h" | | ^~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. Update datetime_panel_dep to make sure cc-datetime-resources.h be generated before including. xfce4-datetime-setter depends on libxfce4ui which requires distro feature 'x11', so make it require 'x11' too. Signed-off-by: Kai Kang <kai.kang@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb')
-rw-r--r--meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb7
1 files changed, 5 insertions, 2 deletions
diff --git a/meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb b/meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb
index d643585370..4d128ac512 100644
--- a/meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb
+++ b/meta-xfce/recipes-apps/xfce4-datetime-setter/xfce4-datetime-setter_3.32.2.bb
@@ -6,13 +6,16 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=75859989545e37968a99b631ef42722e"
6 6
7DEPENDS = "glib-2.0-native libxfce4ui" 7DEPENDS = "glib-2.0-native libxfce4ui"
8 8
9SRC_URI = "git://github.com/schnitzeltony/xfce4-datetime-setter.git;protocol=https" 9SRC_URI = "git://github.com/schnitzeltony/xfce4-datetime-setter.git;protocol=https \
10 file://fix-inner-dependency.patch \
11"
10SRCREV = "5c7a73a3824b03b91719e05e2604b97c7a72d50f" 12SRCREV = "5c7a73a3824b03b91719e05e2604b97c7a72d50f"
11 13
12S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"
13 15
14inherit gettext meson distro_features_check 16inherit gettext meson distro_features_check
15REQUIRED_DISTRO_FEATURES = "systemd" 17
18REQUIRED_DISTRO_FEATURES = "systemd x11"
16 19
17FILES_${PN} += "${datadir}/icons/hicolor" 20FILES_${PN} += "${datadir}/icons/hicolor"
18 21