From 03ddc1f29ae29c3a50b56d1d4b9b1c0e43e23a3d Mon Sep 17 00:00:00 2001 From: Alam Ed Arias Date: Sat, 23 Jul 2016 23:26:08 -0400 Subject: [PATCH] define SRTICT_ALIGN to - if the system is x86/x64 system --- src/lzf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lzf.c b/src/lzf.c index d5b502b58..272174f30 100644 --- a/src/lzf.c +++ b/src/lzf.c @@ -61,6 +61,8 @@ #ifndef STRICT_ALIGN #if !(defined(__i386) || defined (__amd64)) || defined (__clang__) #define STRICT_ALIGN 1 +#else +#define STRICT_ALIGN 0 #endif #endif