[Bf-blender-cvs] [44dc723] master: Compile fix for Windows, M_PI was undefined.

Thomas Dinges noreply at git.blender.org
Fri Mar 21 17:46:28 CET 2014


Commit: 44dc72334d7a93acda7415425c89699c926da376
Author: Thomas Dinges
Date:   Fri Mar 21 17:46:18 2014 +0100
https://developer.blender.org/rB44dc72334d7a93acda7415425c89699c926da376

Compile fix for Windows, M_PI was undefined.

===================================================================

M	source/blender/blenlib/intern/math_easing.c

===================================================================

diff --git a/source/blender/blenlib/intern/math_easing.c b/source/blender/blenlib/intern/math_easing.c
index bec4e0b..885619f 100644
--- a/source/blender/blenlib/intern/math_easing.c
+++ b/source/blender/blenlib/intern/math_easing.c
@@ -35,6 +35,7 @@
 #include <math.h>
 #include <stdlib.h>
 
+#include "BLI_math.h"
 #include "BLI_math_easing.h"




More information about the Bf-blender-cvs mailing list