[MPlayer-cvslog] r24372 - trunk/configure
zuxy
subversion at mplayerhq.hu
Sat Sep 8 20:06:45 CEST 2007
Author: zuxy
Date: Sat Sep 8 20:06:44 2007
New Revision: 24372
Log:
Fix fast_cmov detection broken by r24371
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure (original)
+++ trunk/configure Sat Sep 8 20:06:44 2007
@@ -1714,6 +1714,7 @@ case "$host_arch" in
else
proc=pentium4
fi
+ test $_fast_cmov = "auto" && _fast_cmov=no
;;
*) proc=prescott iproc=686 ;;
esac
@@ -1858,10 +1859,6 @@ EOF
if test $_cmov = "yes" && test $_fast_cmov = "auto" ; then
_fast_cmov="yes"
- case "$proc" in
- pentium4|prescott|nocona)
- _fast_cmov="no"
- esac
else
_fast_cmov="no"
fi
@@ -1902,7 +1899,9 @@ EOF
*)
# 64-bit prescotts exist, but as far as GCC is concerned they
# have the same capabilities as a nocona.
- proc=nocona;;
+ proc=nocona
+ test $_fast_cmov = "auto" && _fast_cmov=no
+ ;;
esac
;;
*)
More information about the MPlayer-cvslog
mailing list