From 4a0f9b61c518a402296a5598badb38b9fcc65273 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 13 Oct 2005 02:38:31 +0000 Subject: [PATCH] include altivec.h if we have it SVN revision: 17491 --- legacy/evas/src/lib/engines/common/evas_convert_yuv.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/legacy/evas/src/lib/engines/common/evas_convert_yuv.c b/legacy/evas/src/lib/engines/common/evas_convert_yuv.c index c218cc1d57..124cb88152 100644 --- a/legacy/evas/src/lib/engines/common/evas_convert_yuv.c +++ b/legacy/evas/src/lib/engines/common/evas_convert_yuv.c @@ -4,6 +4,10 @@ # include "evas_mmx.h" #endif +#if defined HAVE_ALTIVEC_H +# include +#endif + #ifdef BUILD_CONVERT_YUV static void _evas_yuv_init (void);