summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-21 16:43:33 +0000
committeratmos4 <atmos4@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-11-21 16:43:33 +0000
commitb347e6a2682d1127a52a779a9d95937312a69ba4 (patch)
tree535ea8ccadf70a4bbdb65d63205325c34d7e3f01 /configure
parentad9c24d1632d136b197c5e14c3a901f94f7f405c (diff)
downloadmpv-b347e6a2682d1127a52a779a9d95937312a69ba4.tar.bz2
mpv-b347e6a2682d1127a52a779a9d95937312a69ba4.tar.xz
Fix kernel asm check.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3052 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 6 insertions, 6 deletions
diff --git a/configure b/configure
index 4306565e00..488d110b34 100755
--- a/configure
+++ b/configure
@@ -612,12 +612,12 @@ EOF
return 1
}
- extcheck $_mmx "mmx" "emms" && _mmx=yes
- extcheck $_3dnow "3dnow" "femms" && _3dnow=yes
- extcheck $_3dnowex "3dnowex" "pswapd %%mm0, %%mm0" && _3dnowex=yes
- extcheck $_mmx2 "mmx2" "sfence" && _mmx2=yes
- extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" && _sse=yes
- extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" && _sse2=yes
+ extcheck $_mmx "mmx" "emms" || _mmx=no
+ extcheck $_3dnow "3dnow" "femms" || _3dnow=no
+ extcheck $_3dnowex "3dnowex" "pswapd %%mm0, %%mm0" || _3dnowex=no
+ extcheck $_mmx2 "mmx2" "sfence" || _mmx2=no
+ extcheck $_sse "sse" "xorps %%xmm0, %%xmm0" || _sse=no
+ extcheck $_sse2 "sse2" "xorpd %%xmm0, %%xmm0" || _sse2=no
echocheck "mtrr support"
echores "$_mtrr"