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>2010-01-19 18:46:07 +0300
committerThomas Dinges <blender@dingto.org>2010-01-19 18:46:07 +0300
commit4fe037f53f7ae5a45e4518c6b0b8780ae43b62af (patch)
tree0a590ecfd03d12c2d20e10a5d40a92b3fa8a6dfb /intern/string
parent7e9d9460c9857683950cab8bc492c71e4469ddb5 (diff)
Windows Compile Fix. No need for strings.h on win32.
Diffstat (limited to 'intern/string')
-rw-r--r--intern/string/intern/STR_String.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/string/intern/STR_String.cpp b/intern/string/intern/STR_String.cpp
index a4b8d67a117..b81ef064984 100644
--- a/intern/string/intern/STR_String.cpp
+++ b/intern/string/intern/STR_String.cpp
@@ -39,7 +39,11 @@
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
+
+#ifndef WIN32
#include <strings.h>
+#endif
+
#include "STR_String.h"
/*-------------------------------------------------------------------------------------------------