Hi xfce4 folks, when I build xfce4-session from source, I get this error. `` source/xfce4-settings-editor/xfce-settings-cell-renderer.c:29:10: fatal error: dbus/dbus-glib.h: No such file or directory #include <dbus/dbus-glib.h> `` Because the CFLAGS for dbus-glib are missing. At the moment i fixed it with this patch `` --- xfce4-settings-editor/Makefile.inorg 2018-05-03 16:43:56.785402059 +0200 +++ xfce4-settings-editor/Makefile.in 2018-05-03 16:45:12.671945022 +0200 @@ -492,6 +492,7 @@ $(LIBXFCE4UTIL_CFLAGS) \ $(LIBXFCE4UI_CFLAGS) \ $(XFCONF_CFLAGS) \ + $(DBUS_GLIB_CFLAGS) \ $(PLATFORM_CFLAGS) \ -DGTK_DISABLE_SINGLE_INCLUDES \ -DGDK_DISABLE_DEPRECATED \ `` PS: This was my first bugreport, if something is missng please asked.
Additional info: the version is xfce4-settings-4.13.2 downloaded here https://archive.xfce.org/src/xfce/xfce4-settings/4.13/xfce4-settings-4.13.2.tar.bz2
Sean Davis referenced this bugreport in commit 81bf4d70cf8751309cef3c620999cf994933e5ce Add DBUS_GLIB_CFLAGS for Settings Editor (bug 14385) https://git.xfce.org/xfce/xfce4-settings/commit?id=81bf4d70cf8751309cef3c620999cf994933e5ce
Thanks for the bug report and patch! This has been resolved in the above commit.