From 581238117298192189fb481e46bff1793d90e586 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Wed, 23 Nov 2011 20:29:31 -0500 Subject: [PATCH] Added an #ifdef to block out a PowerPC-specific header on Mac OS X. --- neo/idlib/math/Math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neo/idlib/math/Math.h b/neo/idlib/math/Math.h index 415f86e..2373219 100644 --- a/neo/idlib/math/Math.h +++ b/neo/idlib/math/Math.h @@ -29,7 +29,7 @@ If you have questions concerning this license or the applicable additional terms #ifndef __MATH_MATH_H__ #define __MATH_MATH_H__ -#ifdef MACOS_X +#if defined(MACOS_X) && defined(__powerpc__) // for square root estimate instruction #include // for FLT_MIN -- 2.39.2