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>2009-04-13 02:05:09 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-13 02:05:09 +0400
commit066098dfec0879bc6cab90cee4f3555471cc4818 (patch)
treef5cbd12a03f845d199def61b56f200bde82355f3 /source/gameengine/Expressions
parent5b07f06136bc96eedf703210046101efa05f749c (diff)
this should fix building with mingw
Diffstat (limited to 'source/gameengine/Expressions')
-rw-r--r--source/gameengine/Expressions/InputParser.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/gameengine/Expressions/InputParser.cpp b/source/gameengine/Expressions/InputParser.cpp
index 181cd6f3907..1698f1919d1 100644
--- a/source/gameengine/Expressions/InputParser.cpp
+++ b/source/gameengine/Expressions/InputParser.cpp
@@ -40,7 +40,11 @@
#if defined(WIN32) || defined(WIN64)
#define strcasecmp _stricmp
+
+#ifndef strtoll
#define strtoll _strtoi64
+#endif
+
#endif /* Def WIN32 or Def WIN64 */
#define NUM_PRIORITY 6