diff options
author | Cedric Bail <cedric.bail@samsung.com> | 2013-11-18 17:57:59 +0900 |
---|---|---|
committer | Cedric Bail <cedric.bail@samsung.com> | 2013-11-18 19:21:06 +0900 |
commit | 30fa53c13ddc19d9142a599bda2b55f698e78bb9 (patch) | |
tree | 503b8cb5a88a26d0c6c9df2cc689d0e23a381a86 /src/lib/eina | |
parent | ba30060ff971a3a9201bdc8a789dc56f382695cd (diff) |
eina: try to handle all possible 64bits pointers environment.
Diffstat (limited to 'src/lib/eina')
-rw-r--r-- | src/lib/eina/eina_config.h.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/lib/eina/eina_config.h.in b/src/lib/eina/eina_config.h.in index e829966fc5..1f6fe676b7 100644 --- a/src/lib/eina/eina_config.h.in +++ b/src/lib/eina/eina_config.h.in | |||
@@ -97,8 +97,13 @@ | |||
97 | #endif | 97 | #endif |
98 | @EINA_CONFIGURE_HAVE_POSIX_SPINLOCK@ | 98 | @EINA_CONFIGURE_HAVE_POSIX_SPINLOCK@ |
99 | 99 | ||
100 | /* #if (defined(__x86_64__) || defined(__x86_64) || defined(__amd64__) || defined(__amd64) || defined(__ppc64__) || defined(_WIN64) || defined(__LP64__) || defined(_LP64)) */ | 100 | /* Do not turn the following #define as meaning EFL64. We are only |
101 | #if defined(_WIN64) || defined(__LP64__) | 101 | interested to know if sizeof (void*) == 64bits or not. Those means |
102 | something else. | ||
103 | |||
104 | defined(__x86_64__) || defined(__x86_64) || defined(__amd64__) || defined(__amd64) | ||
105 | */ | ||
106 | #if defined(_WIN64) || defined(__LP64__) || defined(_LP64) || defined(__ppc64__) | ||
102 | # define EFL64 | 107 | # define EFL64 |
103 | #endif | 108 | #endif |
104 | 109 | ||