diff options
author | Alex Converse <alex.converse@gmail.com> | 2010-08-26 18:29:32 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2010-08-26 18:29:32 +0000 |
commit | 9cca1e40965bb2955a15f3bfa6aeeb1565b23bb5 (patch) | |
tree | b5995c3aa7ff65d745186e554cbb00da307b0225 | |
parent | e90aa6ed2d6c08764fac5974789c94dc2dfe50fc (diff) | |
download | ffmpeg-9cca1e40965bb2955a15f3bfa6aeeb1565b23bb5.tar.gz |
x86: Require yasm OR --disable-asm OR --disable-mmx OR --disable-yasm to build.
Originally committed as revision 24950 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -2569,9 +2569,10 @@ EOF case "$objformat" in elf) enabled debug && append YASMFLAGS "-g dwarf2" ;; esac - if ! disabled yasm; then + if ! disabled_any asm mmx yasm; then check_yasm "pabsw xmm0, xmm0" && enable yasm || - warn "yasm not found, performance will suffer" + die "yasm not found, performance will suffer. " \ + "If you really want to compile without yasm, configure with --disable-yasm." fi case "$cpu" in |