summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 3c0b02da3f..9c38aaec57 100755
--- a/configure
+++ b/configure
@@ -2838,6 +2838,8 @@ if test "$_memalign" = yes ; then
_def_memalign='#define HAVE_MEMALIGN 1'
else
_def_memalign='#undef HAVE_MEMALIGN'
+ _def_map_memalign='#define memalign(a,b) malloc(b)'
+ not darwin && _def_memalign_hack='#define MEMALIGN_HACK 1'
fi
echores "$_memalign"
@@ -7695,10 +7697,8 @@ $_def_malloc
/* memalign is mapped to malloc if unsupported */
$_def_memalign
-#ifndef HAVE_MEMALIGN
-# define memalign(a,b) malloc(b)
-#define MEMALIGN_HACK 1
-#endif
+$_def_map_memalign
+$_def_memalign_hack
/* Define this if your system has the "alloca.h" header file */
$_def_alloca