From 5aa193f389ee405abf2b3f1aa80ef6fe7f0dcf74 Mon Sep 17 00:00:00 2001 From: Andre Pang Date: Mon, 2 Aug 2004 08:25:11 +0000 Subject: Don't include mmx.h on non-MMX systems: fixes compilation of Goom on Mac OS X CVS patchset: 6868 CVS date: 2004/08/02 08:25:11 --- src/post/goom/cpu_info.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/post/goom/cpu_info.c b/src/post/goom/cpu_info.c index 2ebca754b..67d0a19de 100644 --- a/src/post/goom/cpu_info.c +++ b/src/post/goom/cpu_info.c @@ -8,7 +8,10 @@ */ #include "cpu_info.h" + +#ifdef HAVE_MMX #include "mmx.h" +#endif static unsigned int CPU_FLAVOUR = 0; -- cgit v1.2.3