summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2017-09-11 13:45:18 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2017-09-11 14:08:41 +0200
commit79956eee638109f04f134b829969f40b5079a853 (patch)
tree2590a80361464b672b227c56a56c69d469e6b546
parent8dbbf5c8b75348d9144bff94bfde2554a43dd709 (diff)
downloadefl-79956eee638109f04f134b829969f40b5079a853.tar.gz
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
-rw-r--r--src/lib/eina/eina_debug.c1
1 files changed, 1 insertions, 0 deletions
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"