summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2009-07-15 12:23:38 +0000
committerDiego Biurrun <diego@biurrun.de>2009-07-15 12:23:38 +0000
commitbd20afc4017f07325045fbb2390561985fa85028 (patch)
treeea2f4702530b1292c8561e2dce5c37bbc55deb60 /configure
parentebb82604b0b14c79917466107c39592a20e5b0c5 (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 45ccfd9013..8292e6b3f4 100755
--- a/configure
+++ b/configure
@@ -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