jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=83a591b335dda4e4fabb68b6127152c2a4ce2267
commit 83a591b335dda4e4fabb68b6127152c2a4ce2267 Author: Jean-Philippe Andre <[email protected]> Date: Thu Apr 7 15:25:42 2016 +0900 Ecore: Try to fix build for windows Move efl.h above ecore.h to not mess with EAPI's dllimport vs. dllexport definition. This addresses T3423. --- src/lib/ecore/ecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/ecore/ecore.c b/src/lib/ecore/ecore.c index 6c326a7..2f1d780 100644 --- a/src/lib/ecore/ecore.c +++ b/src/lib/ecore/ecore.c @@ -27,10 +27,10 @@ # include <Evil.h> #endif #include <Eina.h> +#include <Efl.h> #include "Ecore.h" #include "ecore_private.h" -#include "Efl.h" #if defined(HAVE_MALLINFO) || defined(HAVE_MALLOC_INFO) #include <malloc.h> --
