discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=633d16aae7d288e615cdf4586043a9d2cc409f66
commit 633d16aae7d288e615cdf4586043a9d2cc409f66 Author: Derek Foreman <[email protected]> Date: Thu Aug 16 10:17:23 2018 -0400 ecore_evas: Fix elm warnings when building without wayland support Summary: efl_ui_win.c only includes private ecore_evas headers when building for wayland, but wayland canvas creation functions are called even in non-wayland builds. Move the "hidden" wayland APIs to the public header so they don't mess up non-wayland builds. Reviewers: devilhorns, zmike Reviewed By: devilhorns, zmike Subscribers: devilhorns, cedric, #reviewers, #committers, zmike Tags: #efl Differential Revision: https://phab.enlightenment.org/D6822 --- src/lib/elementary/efl_ui_win.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 5e61dd4003..df7094af13 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c @@ -45,6 +45,9 @@ #define FRAME_OBJ_THEME_MIN_VERSION 119 +Ecore_Evas *_wayland_shm_new(const char *disp_name, Ecore_Window parent, int x, int y, int w, int h, Eina_Bool frame); +Ecore_Evas *_wayland_egl_new(const char *disp_name, Ecore_Window parent, int x, int y, int w, int h, Eina_Bool frame); + static const Elm_Win_Trap *trap = NULL; static int _paused_windows = 0; --
