diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2020-05-18 09:48:17 +0100 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2020-05-18 09:51:48 +0100 |
commit | 3ade45cbc82bea1772c7ad1afb7e1ba5dd67d930 (patch) | |
tree | 3b3b3329e8419ddb8021ddc4cca2f52d391b939d /src/lib/embryo/embryo_str.c | |
parent | fe56edae3f5015c62e319d5e2ab2552d3533eead (diff) |
Fix EAPI definition by defining EFL_BUILD for each built DLL
Summary: EAPI must be defined to dllexport when building DLL, and to dllimport when using these DLL. To achieve this, define EFL_BUILD for each library and module, and set DLL_EXPORT unconditionally. Static library are and will be not supported
Test Plan: compilation
Reviewers: zmike, raster, jptiz
Subscribers: cedric, #reviewers, #committers
Tags: #efl
Differential Revision: https://phab.enlightenment.org/D11834
Diffstat (limited to 'src/lib/embryo/embryo_str.c')
-rw-r--r-- | src/lib/embryo/embryo_str.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/embryo/embryo_str.c b/src/lib/embryo/embryo_str.c index d7da4e0dd3..6fafa83db0 100644 --- a/src/lib/embryo/embryo_str.c +++ b/src/lib/embryo/embryo_str.c | |||
@@ -16,6 +16,8 @@ | |||
16 | #include <string.h> | 16 | #include <string.h> |
17 | #include <fnmatch.h> | 17 | #include <fnmatch.h> |
18 | 18 | ||
19 | #include <Eina.h> | ||
20 | |||
19 | #include "Embryo.h" | 21 | #include "Embryo.h" |
20 | #include "embryo_private.h" | 22 | #include "embryo_private.h" |
21 | 23 | ||