diff options
author | Dennis Melentyev <dennis.melentyev@gmail.com> | 2006-08-16 11:34:46 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-08-16 11:34:46 +0000 |
commit | a99073939fb03b142c34008719510f2128c8b936 (patch) | |
tree | 2458c1ce334ad2151935d351b0392e3440c5dcf5 | |
parent | 8156056e05a6cc1e43f14c98d5835f923176eabe (diff) | |
download | ffmpeg-a99073939fb03b142c34008719510f2128c8b936.tar.gz |
FreeBSD malloc aligns on 16 byte boundaries, so no need to use memalignhack.
patch by Dennis Melentyev, dennis ##dot## melentyev ##at ## gmail ##dot## com
Originally committed as revision 6005 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1236,7 +1236,8 @@ if check_header malloc.h; then fi 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." fi |