stefan pushed a commit to branch efl-1.20. http://git.enlightenment.org/core/efl.git/commit/?id=d5148120bf06d54c904a50635b0fde4611333306
commit d5148120bf06d54c904a50635b0fde4611333306 Author: Stefan Schmidt <ste...@osg.samsung.com> Date: Mon Sep 11 13:45:18 2017 +0200 eina: fix build for big endian platforms Summary: The code in eina_debug.c requires the eina_swapX() functions on big endian platforms, so include the required header. Test Plan: Do build on big endian platform like ppc64 or s390x. Subscribers: kubu, cedric, jpeg Differential Revision: https://phab.enlightenment.org/D5158 --- src/lib/eina/eina_debug.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/eina/eina_debug.c b/src/lib/eina/eina_debug.c index ca1bdad6c6..468ca439e5 100644 --- a/src/lib/eina/eina_debug.c +++ b/src/lib/eina/eina_debug.c @@ -60,6 +60,7 @@ #endif #include "eina_debug.h" +#include "eina_cpu.h" #include "eina_types.h" #include "eina_list.h" #include "eina_mempool.h" --