diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-05-22 14:41:00 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-05-22 14:52:26 +0900 |
commit | 1e2d382298b0d4357d35b1f350c04f04820c7218 (patch) | |
tree | 91b0e720058ff1b2d1808465ac8306cc14f2b39f /src/lib/ecore_evas/ecore_evas.c | |
parent | 4b1e3a3d5b9492962a93313eec62e9dea9c1fa1d (diff) |
evas: Fix build for Windows (hopefully)
The declaration of some internal EO APIs was located in the wrong
library, which results on Windows to an invalid definition of
EAPI (dllexport vs dllimport).
Thanks @vtorri for the report!
Diffstat (limited to '')
-rw-r--r-- | src/lib/ecore_evas/ecore_evas.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/ecore_evas/ecore_evas.c b/src/lib/ecore_evas/ecore_evas.c index ce41475d19..c7942548e8 100644 --- a/src/lib/ecore_evas/ecore_evas.c +++ b/src/lib/ecore_evas/ecore_evas.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include "ecore_private.h" | 28 | #include "ecore_private.h" |
29 | #include <Ecore_Input.h> | 29 | #include <Ecore_Input.h> |
30 | #include <Ecore_Input_Evas.h> | 30 | #include <Ecore_Input_Evas.h> |
31 | #include <Evas_Internal.h> | ||
31 | 32 | ||
32 | #include "Ecore_Evas.h" | 33 | #include "Ecore_Evas.h" |
33 | #include "ecore_evas_private.h" | 34 | #include "ecore_evas_private.h" |