discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=81ea29a715ba0c4f11a22dca3f416429ae9afbff

commit 81ea29a715ba0c4f11a22dca3f416429ae9afbff
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Tue Sep 22 13:54:28 2015 -0400

    fix shot module compile without x11 support
---
 src/modules/shot/e_mod_main.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/src/modules/shot/e_mod_main.c b/src/modules/shot/e_mod_main.c
index 5189a73..c7b9075 100644
--- a/src/modules/shot/e_mod_main.c
+++ b/src/modules/shot/e_mod_main.c
@@ -1020,6 +1020,11 @@ _wl_shot_now(E_Zone *zone, E_Client *ec, const char 
*params)
 static void
 _x_shot_now(E_Zone *zone, E_Client *ec, const char *params)
 {
+#ifdef HAVE_WAYLAND_ONLY
+   (void)zone;
+   (void)ec;
+   (void)params;
+#else
    Ecore_X_Image *img;
    unsigned char *src;
    unsigned int *dst;
@@ -1117,6 +1122,7 @@ _x_shot_now(E_Zone *zone, E_Client *ec, const char 
*params)
 
    free(dst);
    ecore_x_image_free(img);
+#endif
 }
 
 static Eina_Bool

-- 


Reply via email to