stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=5057cf31b34536d9700a9ab288f3dc161b661333
commit 5057cf31b34536d9700a9ab288f3dc161b661333 Author: Stefan Schmidt <[email protected]> Date: Wed Nov 12 10:01:47 2014 +0100 elocation: Fix EAPI define for win32 builds That clearyl shows that I never build this for win32 and I missed to change from ecore to elocation when copying the definition. My bad. Thanks goes to jenkins and jpeg. --- src/lib/elocation/Elocation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elocation/Elocation.h b/src/lib/elocation/Elocation.h index 4f8e33a..1e79ab0 100644 --- a/src/lib/elocation/Elocation.h +++ b/src/lib/elocation/Elocation.h @@ -38,7 +38,7 @@ #endif #ifdef _WIN32 -# ifdef EFL_ECORE_BUILD +# ifdef EFL_ELOCATION_BUILD # ifdef DLL_EXPORT # define EAPI __declspec(dllexport) # else @@ -46,7 +46,7 @@ # endif /* ! DLL_EXPORT */ # else # define EAPI __declspec(dllimport) -# endif /* ! EFL_ECORE_BUILD */ +# endif /* ! EFL_ELOCATION_BUILD */ #else # ifdef __GNUC__ # if __GNUC__ >= 4 --
