diff configure @ 28593:94d9e6403ee4

Convert HAVE_MEMALIGN into a 0/1 definition, fixes the warning: mem.c:67:7: warning: "HAVE_MEMALIGN" is not defined
author diego
date Tue, 17 Feb 2009 10:41:13 +0000
parents 7d42a45c225d
children df67d03dde3b
line wrap: on
line diff
--- a/configure	Tue Feb 17 10:13:08 2009 +0000
+++ b/configure	Tue Feb 17 10:41:13 2009 +0000
@@ -3168,7 +3168,7 @@
 if test "$_memalign" = yes ; then
   def_memalign='#define HAVE_MEMALIGN 1'
 else
-  def_memalign='#undef HAVE_MEMALIGN'
+  def_memalign='#define HAVE_MEMALIGN 0'
   def_map_memalign='#define memalign(a,b) malloc(b)'
   darwin || def_memalign_hack='#define CONFIG_MEMALIGN_HACK 1'
 fi