From e2fd618a2c38b40c0ea17925066cec561e0d021f Mon Sep 17 00:00:00 2001 From: diego Date: Mon, 19 Jun 2006 09:16:42 +0000 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ed2d4e6081..76332b44b1 100755 --- a/configure +++ b/configure @@ -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 ;;