diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/coucal.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/coucal.c b/src/coucal.c index 93bad6e..21db4eb 100644 --- a/src/coucal.c +++ b/src/coucal.c @@ -58,8 +58,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. once ] */ #if (!defined(HTS_INTHASH_USES_MD5) && !defined(HTS_INTHASH_USES_MURMUR)) +/* Temporry: fixing Invalid address alignment issues */ +#ifdef defined(__ANDROID__) +#define HTS_INTHASH_USES_MD5 1 +#else #define HTS_INTHASH_USES_MURMUR 1 #endif +#endif #if (defined(HTS_INTHASH_USES_MURMUR)) #include "murmurhash3.h" |