0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Clean up memalign test and don't apply MEMALIGN_HACK to Darwin.

inspired by a patch by Emanuele Giaquinta, emanuele . giaquinta $@$ gmail . com


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19297 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-08-03 17:07:31 +00:00
parent f6da625bc5
commit 01ba6ad0ee

8
configure vendored
View File

@ -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