From a99073939fb03b142c34008719510f2128c8b936 Mon Sep 17 00:00:00 2001 From: Dennis Melentyev Date: Wed, 16 Aug 2006 11:34:46 +0000 Subject: [PATCH] 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 --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 48c5572e91..a7baf55da9 100755 --- a/configure +++ b/configure @@ -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