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:
authorThomas Dinges <blender@dingto.org>2013-02-21 21:39:48 +0400
committerThomas Dinges <blender@dingto.org>2013-02-21 21:39:48 +0400
commita31a93ca3f479739fe07173b65dc042ca4b7aa64 (patch)
treef1f1cb72f7bd105b5a7c73de66388264fc5f01a7 /source/blender/blenfont
parent0a6e8a41b9d607e80f2fe375e9de6183844a8dea (diff)
Compile fixes for recent code cleanups:
* M_PI was not declared for MSVC.
Diffstat (limited to 'source/blender/blenfont')
-rw-r--r--source/blender/blenfont/intern/blf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenfont/intern/blf.c b/source/blender/blenfont/intern/blf.c
index c622f8c35a2..061e8e28607 100644
--- a/source/blender/blenfont/intern/blf.c
+++ b/source/blender/blenfont/intern/blf.c
@@ -43,6 +43,8 @@
#include "DNA_listBase.h"
#include "DNA_vec_types.h"
+#include "BLI_math.h"
+
#include "BIF_gl.h"
#include "BLF_api.h"