--- rak/allocators.h.orig	2018-10-27 17:35:36.000000000 -0700
+++ rak/allocators.h	2018-10-27 17:36:45.000000000 -0700
@@ -77,7 +77,11 @@
 
   static pointer alloc_size(size_type size) {
     pointer ptr = NULL;
+#ifdef HAVE_POSIX_MEMALIGN
     int __UNUSED result = posix_memalign((void**)&ptr, LT_SMP_CACHE_BYTES, size);
+#else
+    ptr = (pointer)valloc(size);
+#endif
 
     return ptr;
   }
