Change integer to string comparison in hw.optional.altivec test since

non-AltiVec machines return a blank instead of 0.
patch by Tim Wojtulewicz timwoj**at**ieee**dot**org


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18756 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2006-06-19 09:16:42 +00:00
parent 1bb2f978aa
commit e2fd618a2c
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -1207,7 +1207,7 @@ EOF
Darwin)
proc=`$_cpuinfo | grep "Processor type" | cut -f 3 -d ' ' | sed 's/ppc//'`
if [ `sysctl -n hw.vectorunit` -eq 1 -o \
"`sysctl -n hw.optional.altivec 2>/dev/null`" -eq 1 ]; then
"`sysctl -n hw.optional.altivec 2> /dev/null`" = "1" ]; then
_altivec=yes
fi
;;