diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-10-10 21:24:22 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2012-10-10 21:24:22 +0000 |
commit | 3cf32cca3f8d03fb39e6133584904855cfb8ca74 (patch) | |
tree | b68748deacd5d0629ccbd90cd065cbac2964491d /src | |
parent | 423ae915ee3857e835d39fd61187bf8df657d0f3 (diff) |
efl: 'fix' support for exotic library.
it's still not merged into EFL single tree, but once it is we should
use "HAVE_EXOTIC" define to work with it.
Before we had: EINA_HAVE_EXOTIC (not used), HAVE_EXOTIC_H (used by
eina_module.c). Since the other libs are all defined as HAVE_LIBNAME,
we're using HAVE_EXOTIC everywhere now.
SVN revision: 77816
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/eina/eina_config.h.in | 7 | ||||
-rw-r--r-- | src/lib/eina/eina_module.c | 2 |
2 files changed, 2 insertions, 7 deletions
diff --git a/src/lib/eina/eina_config.h.in b/src/lib/eina/eina_config.h.in index 1f7bb31ac2..2b4913467d 100644 --- a/src/lib/eina/eina_config.h.in +++ b/src/lib/eina/eina_config.h.in | |||
@@ -19,12 +19,7 @@ | |||
19 | #ifndef EINA_CONFIG_H_ | 19 | #ifndef EINA_CONFIG_H_ |
20 | #define EINA_CONFIG_H_ | 20 | #define EINA_CONFIG_H_ |
21 | 21 | ||
22 | #ifdef EINA_HAVE_EXOTIC_H | 22 | #ifdef HAVE_EXOTIC |
23 | # undef EINA_HAVE_EXOTIC_H | ||
24 | #endif | ||
25 | @EINA_CONFIGURE_HAVE_EXOTIC@ | ||
26 | |||
27 | #ifdef EINA_HAVE_EXOTIC | ||
28 | # include <Exotic.h> | 23 | # include <Exotic.h> |
29 | #endif | 24 | #endif |
30 | 25 | ||
diff --git a/src/lib/eina/eina_module.c b/src/lib/eina/eina_module.c index 736df0d33d..ab14e8189d 100644 --- a/src/lib/eina/eina_module.c +++ b/src/lib/eina/eina_module.c | |||
@@ -58,7 +58,7 @@ void *alloca (size_t); | |||
58 | # include <Escape.h> | 58 | # include <Escape.h> |
59 | #endif | 59 | #endif |
60 | 60 | ||
61 | #ifdef HAVE_EXOTIC_H | 61 | #ifdef HAVE_EXOTIC |
62 | # include <Exotic.h> | 62 | # include <Exotic.h> |
63 | #endif | 63 | #endif |
64 | 64 | ||