From: Loren Merritt Date: Tue, 20 May 2008 09:58:08 +0000 (-0600) Subject: remove nasm version check. a feature check is all that's needed. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1851df553d6a5983d9db7a83e6cf922e7be0b5bb;p=libx264 remove nasm version check. a feature check is all that's needed. silence stderr in yasm version check. --- diff --git a/configure b/configure index 94554dea..2cb9bad1 100755 --- a/configure +++ b/configure @@ -300,22 +300,9 @@ if [ $shared = yes -a \( $ARCH = "X86_64" -o $ARCH = "PPC" -o $ARCH = "ALPHA" \) pic="yes" fi -if [ $SYS = MACOSX -a $ARCH = X86 ] -then - # we want Apple's nasm from Xcode 2.4.1 or later - NASM_BUILD_REQUIRED=11 - NASM_BUILD=`nasm -v|grep "Apple Computer"|sed 's/.*build \([0-9]*\).*/\1/'` - if [ $NASM_BUILD -lt $NASM_BUILD_REQUIRED ] - then - echo "Your version of 'nasm' is too old." - echo "Please install Xcode 2.4.1 or later." - AS="" - fi -fi - if [ $ARCH = X86 -o $ARCH = X86_64 ] ; then if [ $ARCH = X86 -a $pic = yes -a x$AS = xyasm -a\ - "`yasm --version | head -n 1`" "<" "yasm 0.6.2" ] ; then + "`yasm --version 2>$DEVNULL | head -n 1`" "<" "yasm 0.6.2" ] ; then echo "yasm prior to 0.6.2 miscompiles PIC. trying nasm instead..." AS=nasm fi