discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=057a1c2556149adea01f9120b0672f1283020df7
commit 057a1c2556149adea01f9120b0672f1283020df7 Author: Mike Blumenkrantz <[email protected]> Date: Mon Aug 15 10:51:32 2016 -0400 add xwayland compat for efl 1.19+ --- src/modules/xwayland/e_mod_main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/modules/xwayland/e_mod_main.c b/src/modules/xwayland/e_mod_main.c index b113e27..6a024c2 100644 --- a/src/modules/xwayland/e_mod_main.c +++ b/src/modules/xwayland/e_mod_main.c @@ -369,7 +369,11 @@ xwl_init(E_Module *m) return NULL; #ifdef HAVE_PULSE + #ifdef EFL_VERSION_1_19 + efl_del(efl_add(ECORE_AUDIO_OUT_PULSE_CLASS, NULL)); + #else eo_del(eo_add(ECORE_AUDIO_OUT_PULSE_CLASS, NULL)); + #endif #endif /* record wayland display */ --
