Commit cf0fe036 authored by diego's avatar diego

FreeBSD malloc aligns on 16 byte boundaries, so no need to use memalignhack.

patch by Dennis Melentyev, dennis ##dot## melentyev ##at ## gmail ##dot## com


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@6005 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5ae93623
...@@ -1236,7 +1236,8 @@ if check_header malloc.h; then ...@@ -1236,7 +1236,8 @@ if check_header malloc.h; then
fi fi
if test "$_memalign" = "no" -a "$mmx" = "yes" -a \ if test "$_memalign" = "no" -a "$mmx" = "yes" -a \
"$memalignhack" != "yes" -a "$targetos" != "Darwin" ; then "$memalignhack" != "yes" -a "$targetos" != "Darwin" -a \
"$targetos" != "FreeBSD" ; then
die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack." die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment