[FFmpeg-cvslog] r24950 - trunk/configure

alexc subversion
Thu Aug 26 20:29:33 CEST 2010


Author: alexc
Date: Thu Aug 26 20:29:32 2010
New Revision: 24950

Log:
x86: Require yasm OR --disable-asm OR --disable-mmx OR --disable-yasm to build.

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Thu Aug 26 20:21:00 2010	(r24949)
+++ trunk/configure	Thu Aug 26 20:29:32 2010	(r24950)
@@ -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



More information about the ffmpeg-cvslog mailing list