1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-21 16:55:05 +02:00

Skip the check for SSE aligned memory allocators when SSE is disabled.

Fixes issue 1269.

Originally committed as revision 19437 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2009-07-15 12:23:38 +00:00
parent ebb82604b0
commit bd20afc401

2
configure vendored
View File

@ -2091,7 +2091,7 @@ check_header vdpau/vdpau.h
check_header vdpau/vdpau_x11.h
check_header X11/extensions/XvMClib.h
if ! enabled_any memalign memalign_hack posix_memalign && enabled need_memalign ; then
if enabled sse && { ! enabled_any memalign memalign_hack posix_memalign && enabled need_memalign ;} ; then
die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack."
fi