jaehyun pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4f40d476aac297c5dfa7ad340a2629ccc30f993d
commit 4f40d476aac297c5dfa7ad340a2629ccc30f993d Author: Jaehyun Cho <[email protected]> Date: Tue Dec 12 19:11:11 2017 +0900 efl_interfaces_main: Fix NULL API of Efl.Canvas pointer_iterate The Efl.Canvas beta API, pointer_iterate, was not found correctly due to the absence of EFL_CANVAS_BETA macro. --- src/lib/efl/interfaces/efl_interfaces_main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/efl/interfaces/efl_interfaces_main.c b/src/lib/efl/interfaces/efl_interfaces_main.c index 882990bfc2..ea97773e27 100644 --- a/src/lib/efl/interfaces/efl_interfaces_main.c +++ b/src/lib/efl/interfaces/efl_interfaces_main.c @@ -2,6 +2,8 @@ # include <config.h> #endif +#define EFL_CANVAS_BETA + #include <Efl.h> #include "interfaces/efl_config.eo.c" --
