summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-15 09:10:23 +0000
committerzuxy <zuxy@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-15 09:10:23 +0000
commit956f0444aeef85ff3b4b975fefe5c0ab9758e1f4 (patch)
tree5357fcfe5d426e695fa9ec7b24bf06c544a41246 /configure
parent0bd2e793c1f9a56250866f8bac9f502542541b68 (diff)
downloadmpv-956f0444aeef85ff3b4b975fefe5c0ab9758e1f4.tar.bz2
mpv-956f0444aeef85ff3b4b975fefe5c0ab9758e1f4.tar.xz
Set HAVE_FAST_CMOV to 0 for NetBurst based x86-64 processors, e.g. Prescott.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30307 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index ce0d61e974..d674487340 100755
--- a/configure
+++ b/configure
@@ -2024,7 +2024,6 @@ EOF
else
cpuopt=-mcpu
fi
- test $_fast_cmov = "auto" && _fast_cmov=yes
if test "$_runtime_cpudetection" = no ; then
case "$pvendor" in
AuthenticAMD)
@@ -2036,6 +2035,7 @@ EOF
# 64-bit prescotts exist, but as far as GCC is concerned they
# have the same capabilities as a nocona.
proc=nocona
+ test $_fast_cmov = "auto" && _fast_cmov=no
;;
esac
;;
@@ -2089,6 +2089,7 @@ EOF
fi
_optimizing=""
+ test $_fast_cmov = "auto" && _fast_cmov=yes
echores "$proc"
;;