tasn pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=0f55fdc1bb98788f4163c78af48702e549a18990
commit 0f55fdc1bb98788f4163c78af48702e549a18990 Author: Tom Hacohen <[email protected]> Date: Tue Aug 26 13:52:10 2014 +0100 Evas: Fix compilation under windows. Fix as suggesetd by Vincent Torri. --- src/lib/evas/Evas.h | 2 ++ src/lib/evas/Evas_Eo.h | 4 ---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lib/evas/Evas.h b/src/lib/evas/Evas.h index 05ac2c0..f68527e 100644 --- a/src/lib/evas/Evas.h +++ b/src/lib/evas/Evas.h @@ -252,6 +252,8 @@ /* This include has been added to support Eo in Evas */ #include <Eo.h> +#include <Efl.h> + #include <Evas_Loader.h> diff --git a/src/lib/evas/Evas_Eo.h b/src/lib/evas/Evas_Eo.h index e46014f..a807e0a 100644 --- a/src/lib/evas/Evas_Eo.h +++ b/src/lib/evas/Evas_Eo.h @@ -2,10 +2,6 @@ # error You shall not include this header directly #endif -#include <Eo.h> - -#include <Efl.h> - EAPI extern const Eo_Event_Description _EVAS_CANVAS_EVENT_FOCUS_IN; EAPI extern const Eo_Event_Description _EVAS_CANVAS_EVENT_FOCUS_OUT; EAPI extern const Eo_Event_Description _EVAS_CANVAS_EVENT_RENDER_FLUSH_PRE; --
