[Ffmpeg-cvslog] r5821 - trunk/configure
diego
subversion
Mon Jul 24 11:45:13 CEST 2006
Author: diego
Date: Mon Jul 24 11:45:13 2006
New Revision: 5821
Modified:
trunk/configure
Log:
Skip the MMX/SSE and memalign() check when running on OS X/Darwin, *alloc
provides necessary alignment on this platform.
patch by Mino Taoyama and Nigel Pearson
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Mon Jul 24 11:45:13 2006
@@ -1241,7 +1241,8 @@
check_func memalign || _memalign="no"
fi
-if test "$_memalign" = "no" -a "$mmx" = "yes" -a "$memalignhack" != "yes"; then
+if test "$_memalign" = "no" -a "$mmx" = "yes" -a \
+ "$memalignhack" != "yes" -a "$darwin" != "yes" ; then
die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack."
fi
More information about the ffmpeg-cvslog
mailing list