blob: 109b7b14595ba6a38a0d3f0534a0618aab9d4f26 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 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