[FFmpeg-cvslog] r16998 - trunk/configure

mru subversion
Thu Feb 5 03:47:26 CET 2009


Author: mru
Date: Thu Feb  5 03:47:26 2009
New Revision: 16998

Log:
configure: add command flag to disable yasm use

Modified:
   trunk/configure

Modified: trunk/configure
==============================================================================
--- trunk/configure	Thu Feb  5 01:03:54 2009	(r16997)
+++ trunk/configure	Thu Feb  5 03:47:26 2009	(r16998)
@@ -207,6 +207,7 @@ show_help(){
   echo "  --disable-mmi            disable MMI optimizations"
   echo "  --disable-neon           disable neon optimizations"
   echo "  --disable-vis            disable VIS optimizations"
+  echo "  --disable-yasm           disable use of yasm assembler"
   echo
   echo "Developer options (useful when working on FFmpeg itself):"
   echo "  --disable-debug          disable debugging symbols"
@@ -918,6 +919,7 @@ CMDLINE_SELECT="
     logging
     optimizations
     stripping
+    yasm
 "
 
 PATHS_LIST='
@@ -1787,7 +1789,7 @@ EOF
         macho64)              append YASMFLAGS "-DPIC -DPREFIX" ;;
         *)                    append YASMFLAGS "-DPREFIX"  ;;
     esac
-    check_yasm "pabsw xmm0, xmm0" && enable yasm
+    disabled yasm || { check_yasm "pabsw xmm0, xmm0" && enable yasm; }
 fi
 
 # check for assembler specific support




More information about the ffmpeg-cvslog mailing list