summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
authorramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-08 20:21:21 +0000
committerramiro <ramiro@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-04-08 20:21:21 +0000
commitca242e5f73d3bff1006b373b123b4749a33f5bd7 (patch)
treea9c1c91d7d803ccd58a8015a5fc4da3425eb8be5 /cpudetect.c
parent94959cc3333b03a20c98fa378952dfc074e8f107 (diff)
downloadmpv-ca242e5f73d3bff1006b373b123b4749a33f5bd7.tar.bz2
mpv-ca242e5f73d3bff1006b373b123b4749a33f5bd7.tar.xz
Rename RUNTIME_CPUDETECT to CONFIG_RUNTIME_CPUDETECT and always define it.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29154 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.c')
-rw-r--r--cpudetect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpudetect.c b/cpudetect.c
index b5eb47e970..e6e8a86f25 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -193,7 +193,7 @@ void GetCpuCaps( CpuCaps *caps)
// caps->hasMMX2 = 0;
// caps->hasMMX = 0;
-#ifndef RUNTIME_CPUDETECT
+#if !CONFIG_RUNTIME_CPUDETECT
#if !HAVE_MMX
if(caps->hasMMX) mp_msg(MSGT_CPUDETECT,MSGL_WARN,"MMX supported but disabled\n");
caps->hasMMX=0;
@@ -218,7 +218,7 @@ void GetCpuCaps( CpuCaps *caps)
if(caps->has3DNowExt) mp_msg(MSGT_CPUDETECT,MSGL_WARN,"3DNowExt supported but disabled\n");
caps->has3DNowExt=0;
#endif
-#endif // RUNTIME_CPUDETECT
+#endif // CONFIG_RUNTIME_CPUDETECT
}
char *GetCpuFriendlyName(unsigned int regs[], unsigned int regs2[]){