diff options
author | Stefan Schmidt <s.schmidt@samsung.com> | 2014-11-12 10:01:47 +0100 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2014-11-12 10:01:47 +0100 |
commit | 5057cf31b34536d9700a9ab288f3dc161b661333 (patch) | |
tree | 7f79f706ebf63cdd8411df86fc11e7ea0139d63b /src/lib/elocation/Elocation.h | |
parent | 4c57c254e2db3fa1f3ffaa15d3e13eafd1eba41a (diff) |
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.
Diffstat (limited to 'src/lib/elocation/Elocation.h')
-rw-r--r-- | src/lib/elocation/Elocation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elocation/Elocation.h b/src/lib/elocation/Elocation.h index 4f8e33a517..1e79ab0f1d 100644 --- a/src/lib/elocation/Elocation.h +++ b/src/lib/elocation/Elocation.h | |||
@@ -38,7 +38,7 @@ | |||
38 | #endif | 38 | #endif |
39 | 39 | ||
40 | #ifdef _WIN32 | 40 | #ifdef _WIN32 |
41 | # ifdef EFL_ECORE_BUILD | 41 | # ifdef EFL_ELOCATION_BUILD |
42 | # ifdef DLL_EXPORT | 42 | # ifdef DLL_EXPORT |
43 | # define EAPI __declspec(dllexport) | 43 | # define EAPI __declspec(dllexport) |
44 | # else | 44 | # else |
@@ -46,7 +46,7 @@ | |||
46 | # endif /* ! DLL_EXPORT */ | 46 | # endif /* ! DLL_EXPORT */ |
47 | # else | 47 | # else |
48 | # define EAPI __declspec(dllimport) | 48 | # define EAPI __declspec(dllimport) |
49 | # endif /* ! EFL_ECORE_BUILD */ | 49 | # endif /* ! EFL_ELOCATION_BUILD */ |
50 | #else | 50 | #else |
51 | # ifdef __GNUC__ | 51 | # ifdef __GNUC__ |
52 | # if __GNUC__ >= 4 | 52 | # if __GNUC__ >= 4 |