From: Diego Biurrun Date: Sun, 28 Jan 2007 16:50:05 +0000 (+0000) Subject: Fix wrong condition check in the memalign error output. X-Git-Tag: v0.5~10312 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d7a9562415fb2fdc9a672d59f2944b32d888b96b;p=platform%2Fupstream%2Flibav.git Fix wrong condition check in the memalign error output. Originally committed as revision 7748 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/configure b/configure index 6504bf2..76d5c81 100755 --- a/configure +++ b/configure @@ -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