From bd73598e02a1402a582c73e04fa6d515d6b56ae1 Mon Sep 17 00:00:00 2001 From: Chow Loong Jin Date: Sat, 29 Mar 2014 03:02:00 +0800 Subject: Fix endian detection in configure.ac On debian-mips, neither __LITTLE_ENDIAN__ nor __BIG_ENDIAN__ are defined anywhere, so PLIST_BYTE_ORDER defaults to PLIST_LITTLE_ENDIAN when it should really be PLIST_BIG_ENDIAN on this architecture. This fixes issue #13. --- src/common.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/common.h b/src/common.h index beb4a2b..c71ef4a 100644 --- a/src/common.h +++ b/src/common.h @@ -1,6 +1,10 @@ #ifndef COMMON_H #define COMMON_H +#ifdef HAVE_CONFIG_H +#include +#endif + #define PLIST_LITTLE_ENDIAN 0 #define PLIST_BIG_ENDIAN 1 -- cgit v1.1-32-gdbae