[1.5] Build fails on AIX

Fixes issue 139
This commit is contained in:
Mathieu Malaterre 2012-05-21 10:34:35 +00:00
parent eeca4a220c
commit 8cd13f3a55
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ Allocate memory aligned to a 16 byte boundry
#if defined(__sun)
#define HAVE_MEMALIGN
/* Linux x86_64 and OSX always align allocations to 16 bytes */
#elif !defined(__amd64__) && !defined(__APPLE__)
#elif !defined(__amd64__) && !defined(__APPLE__) && !defined(_AIX)
#define HAVE_MEMALIGN
#include <malloc.h>
#endif