From d18538076d572cc5a27646b6efbeb8033e386cc5 Mon Sep 17 00:00:00 2001 From: Michel Selten Date: Sun, 22 Jun 2003 18:48:22 +0000 Subject: [PATCH] * Added the definition of FP_INFINITE back to Metaball.c It really doesn't compile on some platforms if it isn't defined. --- source/blender/python/api2_2x/Metaball.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source/blender/python/api2_2x/Metaball.c b/source/blender/python/api2_2x/Metaball.c index c86a39d929e..1608a4b1028 100644 --- a/source/blender/python/api2_2x/Metaball.c +++ b/source/blender/python/api2_2x/Metaball.c @@ -31,6 +31,10 @@ #include "Metaball.h" +#ifndef FP_INFINITE +#define FP_INFINTE 1 +#endif + /*****************************************************************************/ /* Function: M_Metaball_New */ /* Python equivalent: Blender.Metaball.New */