eina: try to handle all possible 64bits pointers environment.

This commit is contained in:
Cedric Bail 2013-11-18 17:57:59 +09:00
parent ba30060ff9
commit 30fa53c13d
1 changed files with 7 additions and 2 deletions

View File

@ -97,8 +97,13 @@
#endif
@EINA_CONFIGURE_HAVE_POSIX_SPINLOCK@
/* #if (defined(__x86_64__) || defined(__x86_64) || defined(__amd64__) || defined(__amd64) || defined(__ppc64__) || defined(_WIN64) || defined(__LP64__) || defined(_LP64)) */
#if defined(_WIN64) || defined(__LP64__)
/* Do not turn the following #define as meaning EFL64. We are only
interested to know if sizeof (void*) == 64bits or not. Those means
something else.
defined(__x86_64__) || defined(__x86_64) || defined(__amd64__) || defined(__amd64)
*/
#if defined(_WIN64) || defined(__LP64__) || defined(_LP64) || defined(__ppc64__)
# define EFL64
#endif