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-12 14:56:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-12 14:56:36 +0400
commitee24c829b56ebddb47ae2bcfe30db5d857610450 (patch)
tree21ea826aa95c3f0a9f631819a49f22cba35c6b08 /source/gameengine/Expressions
parent5b306b7541bfc60342b70bcc55456d5c453a294a (diff)
need strtoll defined as _strtoi64 to build on windows
Diffstat (limited to 'source/gameengine/Expressions')
-rw-r--r--source/gameengine/Expressions/InputParser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/gameengine/Expressions/InputParser.cpp b/source/gameengine/Expressions/InputParser.cpp
index 677bbb36d70..181cd6f3907 100644
--- a/source/gameengine/Expressions/InputParser.cpp
+++ b/source/gameengine/Expressions/InputParser.cpp
@@ -39,7 +39,8 @@
#include "IfExpr.h"
#if defined(WIN32) || defined(WIN64)
-#define strcasecmp _stricmp
+#define strcasecmp _stricmp
+#define strtoll _strtoi64
#endif /* Def WIN32 or Def WIN64 */
#define NUM_PRIORITY 6