summaryrefslogtreecommitdiffstats
path: root/meta-xfce
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2018-06-10 17:08:08 +0200
committerKhem Raj <raj.khem@gmail.com>2018-06-14 08:57:14 -0700
commit13f311d88ffda574f3c0e3b70b8fbe3907c5629f (patch)
tree4fddb80a644004e8e3739d09fa72105349851e4e /meta-xfce
parent409780a7482c02553156fbae064990ef874044c6 (diff)
downloadmeta-openembedded-13f311d88ffda574f3c0e3b70b8fbe3907c5629f.tar.gz
xfce4-settings: fix build after update of xfconf
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Diffstat (limited to 'meta-xfce')
-rw-r--r--meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch41
-rw-r--r--meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb1
2 files changed, 42 insertions, 0 deletions
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch b/meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch
new file mode 100644
index 000000000..109b7b145
--- /dev/null
+++ b/meta-xfce/recipes-xfce/xfce4-settings/files/0002-Fix-linking-to-dbus-glib-bug-13633.patch
@@ -0,0 +1,41 @@
1From b6e46e6a84e45f7bd954687be703987825a54c1e Mon Sep 17 00:00:00 2001
2From: Eric Koegel <eric.koegel@gmail.com>
3Date: Sun, 11 Jun 2017 11:38:26 +0300
4Subject: [PATCH] Fix linking to dbus-glib (bug #13633)
5
6With xfconf moving to GDBus nothing provides the libs for dbus-glib
7that xfce4-settings requires. This patch adds the libs back in until
8settings can be ported to GDBus.
9
10Signed-off-by: Sean Davis <smd.seandavis@gmail.com>
11
12Upstream-Status: Backport
13---
14 xfce4-settings-editor/Makefile.am | 4 +++-
15 1 file changed, 3 insertions(+), 1 deletion(-)
16
17diff --git a/xfce4-settings-editor/Makefile.am b/xfce4-settings-editor/Makefile.am
18index 5964366..c2c7c4b 100644
19--- a/xfce4-settings-editor/Makefile.am
20+++ b/xfce4-settings-editor/Makefile.am
21@@ -28,6 +28,7 @@ xfce4_settings_editor_CFLAGS = \
22 $(LIBXFCE4UTIL_CFLAGS) \
23 $(LIBXFCE4UI_CFLAGS) \
24 $(XFCONF_CFLAGS) \
25+ $(DBUS_GLIB_CFLAGS) \
26 $(PLATFORM_CFLAGS)
27
28 xfce4_settings_editor_LDFLAGS = \
29@@ -39,7 +40,8 @@ xfce4_settings_editor_LDADD = \
30 $(DBUS_GLIB_LIBS) \
31 $(LIBXFCE4UTIL_LIBS) \
32 $(LIBXFCE4UI_LIBS) \
33- $(XFCONF_LIBS)
34+ $(XFCONF_LIBS) \
35+ $(DBUS_GLIB_LIBS)
36
37 desktopdir = $(datadir)/applications
38 desktop_in_files = xfce4-settings-editor.desktop.in
39--
402.14.3
41
diff --git a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb
index bf9bd3102..d937653fa 100644
--- a/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb
+++ b/meta-xfce/recipes-xfce/xfce4-settings/xfce4-settings_git.bb
@@ -15,6 +15,7 @@ REQUIRED_DISTRO_FEATURES = "x11"
15SRC_URI = " \ 15SRC_URI = " \
16 git://github.com/schnitzeltony/xfce4-settings.git;protocol=git;branch=for-oe-4.12.3 \ 16 git://github.com/schnitzeltony/xfce4-settings.git;protocol=git;branch=for-oe-4.12.3 \
17 file://0001-xsettings.xml-Set-default-themes.patch \ 17 file://0001-xsettings.xml-Set-default-themes.patch \
18 file://0002-Fix-linking-to-dbus-glib-bug-13633.patch \
18" 19"
19SRCREV = "b701ac8b66b83c17469dd5009da51eeb59eba442" 20SRCREV = "b701ac8b66b83c17469dd5009da51eeb59eba442"
20S = "${WORKDIR}/git" 21S = "${WORKDIR}/git"