From 6686ac5ebc6819ce21b79e52b415294754476c52 Mon Sep 17 00:00:00 2001 From: mru Date: Thu, 5 Feb 2009 02:47:26 +0000 Subject: [PATCH] configure: add command flag to disable yasm use git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16998 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 1c225a020..35a4d7788 100755 --- a/configure +++ b/configure @@ -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 -- 2.39.2