# HG changeset patch # User diego # Date 1229013862 0 # Node ID 4bcd2266302061a4f3a7354327992313b96a1ec9 # Parent bf8f52662dc3f47bacd69369f9d68fc17e3f0f72 Do not set COMPILE_C if AltiVec is enabled without runtime CPU detection. Gets rid of the following warning: postprocess_template.c:3271: warning: ¡ÆpostProcess_C¡Ç defined but not used diff -r bf8f52662dc3 -r 4bcd22663020 postprocess.c --- a/postprocess.c Sun Nov 02 18:59:44 2008 +0000 +++ b/postprocess.c Thu Dec 11 16:44:22 2008 +0000 @@ -557,7 +557,7 @@ //Note: we have C, MMX, MMX2, 3DNOW version there is no 3DNOW+MMX2 one //Plain C versions -#if !defined (HAVE_MMX) || defined (RUNTIME_CPUDETECT) +#if !(defined (HAVE_MMX) || defined (HAVE_ALTIVEC)) || defined (RUNTIME_CPUDETECT) #define COMPILE_C #endif