This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 80aac84063088275b91c4a5db7769a8e88ac9c95
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Mon Jul 22 11:05:29 2024 +0100
no e xsettings if wl only
also fixes #78
---
src/bin/e_includes.h | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/src/bin/e_includes.h b/src/bin/e_includes.h
index eb914f42f..9fee1c39e 100644
--- a/src/bin/e_includes.h
+++ b/src/bin/e_includes.h
@@ -137,7 +137,9 @@
#include "e_env.h"
#include "e_backlight.h"
#include "e_deskenv.h"
-#include "e_xsettings.h"
+#ifndef HAVE_WAYLAND_ONLY
+# include "e_xsettings.h"
+#endif
#include "e_update.h"
#include "e_xkb.h"
#include "e_log.h"
@@ -152,8 +154,10 @@
#include "e_comp_canvas.h"
#include "e_utils.h"
#include "e_hints.h"
-#include "e_comp_x_devices.h"
-#include "e_comp_x_randr.h"
+#ifndef HAVE_WAYLAND_ONLY
+# include "e_comp_x_devices.h"
+# include "e_comp_x_randr.h"
+#endif
#include "e_watchdog.h"
#include "e_gesture.h"
#include "e_sound.h"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.