seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=7229c206eab2df8b0d25db494b3a2d6b45fb6813
commit 7229c206eab2df8b0d25db494b3a2d6b45fb6813 Author: Daniel Juyung Seo <[email protected]> Date: Fri Nov 15 21:52:19 2013 +0900 elm_win.c: removed build warning when there is no wayland support. --- src/lib/elm_win.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/lib/elm_win.c b/src/lib/elm_win.c index d401eae..1b420aa 100644 --- a/src/lib/elm_win.c +++ b/src/lib/elm_win.c @@ -1704,7 +1704,8 @@ _elm_ee_wlwin_get(const Ecore_Evas *ee) if (ee) win = ecore_evas_wayland_window_get(ee); } return win; - +#else + (void)ee; #endif return NULL; } @@ -5434,6 +5435,8 @@ _wl_window_get(Eo *obj EINA_UNUSED, void *_pd, va_list *list) *ret = elm_win_wl_window_get(sd->parent); return; } +#else + (void)_pd; #endif *ret = NULL; } --
