[Ffmpeg-cvslog] r6005 - trunk/configure

diego subversion
Wed Aug 16 13:34:47 CEST 2006


Author: diego
Date: Wed Aug 16 13:34:46 2006
New Revision: 6005

Modified:
   trunk/configure

Log:
FreeBSD malloc aligns on 16 byte boundaries, so no need to use memalignhack.
patch by Dennis Melentyev, dennis ##dot## melentyev ##at ## gmail ##dot## com


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Wed Aug 16 13:34:46 2006
@@ -1236,7 +1236,8 @@
 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
 




More information about the ffmpeg-cvslog mailing list