summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure17
1 files changed, 10 insertions, 7 deletions
diff --git a/configure b/configure
index a399005b51..0f69736890 100755
--- a/configure
+++ b/configure
@@ -580,14 +580,17 @@ if x86 || ppc; then
echocheck "CPU type"
echores "$pname"
+ # just leaving this here becouse the non-x86 optims
if test "$_runtime_cpudetection" = yes ; then
- _mmx=yes
- _3dnow=yes
- _3dnowex=yes
- _mmx2=yes
- _sse=yes
- _sse2=yes
- _mtrr=yes
+ if x86; then
+ _mmx=yes
+ _3dnow=yes
+ _3dnowex=yes
+ _mmx2=yes
+ _sse=yes
+ _sse2=yes
+ _mtrr=yes
+ fi
_optimizing="Runtime CPU-Detection enabled"
fi