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