diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-01-28 16:50:05 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-01-28 16:50:05 +0000 |
commit | d7a9562415fb2fdc9a672d59f2944b32d888b96b (patch) | |
tree | 6d96a9259084c9e407f25d055688a08e2e038927 /configure | |
parent | a737f1dfdb588079bdd1c97a77744993dafa8c62 (diff) | |
download | ffmpeg-d7a9562415fb2fdc9a672d59f2944b32d888b96b.tar.gz |
Fix wrong condition check in the memalign error output.
Originally committed as revision 7748 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1543,7 +1543,7 @@ fi check_header malloc.h check_func memalign -if disabled memalign && enabled_all need_memalign memalign_hack ; then +if disabled_all memalign memalign_hack && enabled_all need_memalign ; then die "Error, no memalign() but SSE enabled, disable it or use --enable-memalign-hack." fi |