From 81ea29a715ba0c4f11a22dca3f416429ae9afbff Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 22 Sep 2015 13:54:28 -0400 Subject: [PATCH] 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 -- 2.7.4