summaryrefslogtreecommitdiffstats
path: root/mpcommon.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 /mpcommon.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 'mpcommon.c')
-rw-r--r--mpcommon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mpcommon.c b/mpcommon.c
index 1165fc45ee..57d4f0536d 100644
--- a/mpcommon.c
+++ b/mpcommon.c
@@ -41,7 +41,7 @@ void print_version(const char* name)
gCpuCaps.hasMMX, gCpuCaps.hasMMX2,
gCpuCaps.has3DNow, gCpuCaps.has3DNowExt,
gCpuCaps.hasSSE, gCpuCaps.hasSSE2, gCpuCaps.hasSSSE3);
-#ifdef RUNTIME_CPUDETECT
+#if CONFIG_RUNTIME_CPUDETECT
mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithRuntimeDetection);
#else
mp_msg(MSGT_CPLAYER,MSGL_V, MSGTR_CompiledWithCPUExtensions);
@@ -62,7 +62,7 @@ if (HAVE_SSSE3)
if (HAVE_CMOV)
mp_msg(MSGT_CPLAYER,MSGL_V," CMOV");
mp_msg(MSGT_CPLAYER,MSGL_V,"\n");
-#endif /* RUNTIME_CPUDETECT */
+#endif /* CONFIG_RUNTIME_CPUDETECT */
#endif /* ARCH_X86 */
}