Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichel Selten <michel@mselten.demon.nl>2003-06-15 17:14:45 +0400
committerMichel Selten <michel@mselten.demon.nl>2003-06-15 17:14:45 +0400
commitcada9df21482aa4aa99763ec29bd2e979a77c64b (patch)
tree8e19dce5bc14ed23f2aa201baeffd230b1703315 /source/blender/python/api2_2x/Metaball.c
parent6a626aa60de55f35e74ff222bedeb4ada68c6bdb (diff)
* Fixed compilation error. FP_INFINITE needs to be defined _after_ all header
files are included.
Diffstat (limited to 'source/blender/python/api2_2x/Metaball.c')
-rw-r--r--source/blender/python/api2_2x/Metaball.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/python/api2_2x/Metaball.c b/source/blender/python/api2_2x/Metaball.c
index 66a4e4d6acc..9d4ff483e4f 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_INFINITE 1
+#endif
+
/*****************************************************************************/
/* Function: M_Metaball_New */
/* Python equivalent: Blender.Metaball.New */