]> granicus.if.org Git - libx264/commitdiff
Update yasm configure check
authorFiona Glaser <fiona@x264.com>
Mon, 14 Sep 2009 10:21:14 +0000 (03:21 -0700)
committerFiona Glaser <fiona@x264.com>
Mon, 14 Sep 2009 19:28:36 +0000 (12:28 -0700)
lzcnt apparently requires yasm 0.6.2.

configure

index c39f67c2b9fae4a6913548e9c2aff6f57f6e2f0c..d26ace16cc036033cf36056298c91016e3b7e8c8 100755 (executable)
--- a/configure
+++ b/configure
@@ -310,10 +310,10 @@ if [ $shared = yes -a \( $ARCH = "X86_64" -o $ARCH = "PPC" -o $ARCH = "ALPHA" -o
 fi
 
 if [ $asm = yes -a \( $ARCH = X86 -o $ARCH = X86_64 \) ] ; then
-    if ! as_check "pinsrd xmm0, [esp], 0" ; then
+    if ! as_check "lzcnt eax, eax" ; then
         VER=`($AS --version || echo no assembler) 2>$DEVNULL | head -n 1`
         echo "Found $VER"
-        echo "Minimum version is yasm-0.6.1"
+        echo "Minimum version is yasm-0.6.2"
         echo "If you really want to compile without asm, configure with --disable-asm."
         exit 1
     fi