Commit bd20afc4 authored by Diego Biurrun's avatar Diego Biurrun

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
parent ebb82604
...@@ -2091,7 +2091,7 @@ check_header vdpau/vdpau.h ...@@ -2091,7 +2091,7 @@ check_header vdpau/vdpau.h
check_header vdpau/vdpau_x11.h check_header vdpau/vdpau_x11.h
check_header X11/extensions/XvMClib.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." die "Error, no aligned memory allocator but SSE enabled, disable it or use --enable-memalign-hack."
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment