[FFmpeg-cvslog] r23761 - trunk/configure
mru
subversion
Thu Jun 24 22:49:37 CEST 2010
Author: mru
Date: Thu Jun 24 22:49:37 2010
New Revision: 23761
Log:
configure: warn about missing yasm
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Thu Jun 24 22:49:32 2010 (r23760)
+++ trunk/configure Thu Jun 24 22:49:37 2010 (r23761)
@@ -2465,7 +2465,10 @@ EOF
case "$objformat" in
elf) enabled debug && append YASMFLAGS "-g dwarf2" ;;
esac
- disabled yasm || { check_yasm "pabsw xmm0, xmm0" && enable yasm; }
+ if ! disabled yasm; then
+ check_yasm "pabsw xmm0, xmm0" && enable yasm ||
+ warn "yasm not found, performance will suffer"
+ fi
case "$cpu" in
athlon*|opteron*|k8*|pentium|pentium-mmx|prescott|nocona|atom|geode)
More information about the ffmpeg-cvslog
mailing list