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:
authorCampbell Barton <ideasman42@gmail.com>2010-01-19 18:57:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-01-19 18:57:02 +0300
commit9396bb2da92080dc44cb255e3f37c8fcac6ead79 (patch)
tree2306bf9a07c14e7a5c880ff26c8d19a0c636118b /intern/string
parent4fe037f53f7ae5a45e4518c6b0b8780ae43b62af (diff)
- AIX ifdef's so windows works, cant test but this seems the most used define. might need to add to buildsystem config.
- transform default scale was too hight, calls to random were inconsistant. (fault of own modif's) - cmake openal include was added twice on recent commit.
Diffstat (limited to 'intern/string')
-rw-r--r--intern/string/intern/STR_String.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/intern/string/intern/STR_String.cpp b/intern/string/intern/STR_String.cpp
index b81ef064984..8b16452ed34 100644
--- a/intern/string/intern/STR_String.cpp
+++ b/intern/string/intern/STR_String.cpp
@@ -39,11 +39,9 @@
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
-
-#ifndef WIN32
+#if defined(__sun__) || defined( __sun ) || defined (__sparc) || defined (__sparc__) || defined (_AIX)
#include <strings.h>
#endif
-
#include "STR_String.h"
/*-------------------------------------------------------------------------------------------------