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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-03-13 21:30:31 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-03-13 21:30:31 +0400
commit385650974a3f38cfcebdcbfb71bac24b021e850d (patch)
treec5ebd2c4427fc62f2104481a19704812597164c6 /source/blender/avi
parent5162a155afe279519ad353312307ab5496c16603 (diff)
Fix for build error with previous commit, seems the order of #includes matters here.
Diffstat (limited to 'source/blender/avi')
-rw-r--r--source/blender/avi/intern/avi.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/avi/intern/avi.c b/source/blender/avi/intern/avi.c
index 6a5e8a61bd8..1b1ec1c08af 100644
--- a/source/blender/avi/intern/avi.c
+++ b/source/blender/avi/intern/avi.c
@@ -38,9 +38,14 @@
#include <stdio.h>
#include <ctype.h>
+#ifdef WIN32
+#include "BLI_winstuff.h"
+#endif
+
#include "MEM_guardedalloc.h"
#include "MEM_sys_types.h"
+#include "BLI_utildefines.h"
#include "BLI_fileops.h"
#include "AVI_avi.h"