From b4181b015a221c98cbd2b973a9db7b04e7242e29 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Fri, 10 Mar 2006 08:10:24 +0000 Subject: [PATCH] (USE_POSIX_MEMALIGN): Fix last change. --- src/alloc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index ee84bd2fb29..e3b65c1a4f4 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -886,7 +886,9 @@ lisp_free (block) /* Use posix_memalloc if the system has it and we're using the system's malloc (because our gmalloc.c routines don't have posix_memalign although its memalloc could be used). */ -#define USE_POSIX_MEMALIGN (HAVE_POSIX_MEMALIGN && SYSTEM_MALLOC) +#if defined (HAVE_POSIX_MEMALIGN) && defined (SYSTEM_MALLOC) +#define USE_POSIX_MEMALIGN 1 +#endif /* BLOCK_ALIGN has to be a power of 2. */ #define BLOCK_ALIGN (1 << 10) -- 2.39.2