Allow to disable x86 cpu extensions (e.g, via --disable-sse) even with

runtime cpudetection.


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23583 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-06-19 13:37:31 +00:00
parent 459904d825
commit ba99ef4655
1 changed files with 9 additions and 9 deletions

18
configure vendored
View File

@ -2208,16 +2208,16 @@ esac # case "$host_arch" in
if test "$_runtime_cpudetection" = yes ; then if test "$_runtime_cpudetection" = yes ; then
if x86 ; then if x86 ; then
_cmov=yes test "$_cmov" != no && _cmov=yes
x86_32 && _cmov=no x86_32 && _cmov=no
_mmx=yes test "$_mmx" != no && _mmx=yes
_3dnow=yes test "$_3dnow" != no && _3dnow=yes
_3dnowext=yes test "$_3dnowext" != no && _3dnowext=yes
_mmxext=yes test "$_mmxext" != no && _mmxext=yes
_sse=yes test "$_sse" != no && _sse=yes
_sse2=yes test "$_sse2" != no && _sse2=yes
_ssse3=yes test "$_ssse3" != no && _ssse3=yes
_mtrr=yes test "$_mtrr" != no && _mtrr=yes
fi fi
if ppc; then if ppc; then
_altivec=yes _altivec=yes