[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [19692] trunk/blender/source/gameengine/ Expressions/InputParser.cpp: this should fix building with mingw

Campbell Barton ideasman42 at gmail.com
Mon Apr 13 00:05:09 CEST 2009


Revision: 19692
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=19692
Author:   campbellbarton
Date:     2009-04-13 00:05:09 +0200 (Mon, 13 Apr 2009)

Log Message:
-----------
this should fix building with mingw

Modified Paths:
--------------
    trunk/blender/source/gameengine/Expressions/InputParser.cpp

Modified: trunk/blender/source/gameengine/Expressions/InputParser.cpp
===================================================================
--- trunk/blender/source/gameengine/Expressions/InputParser.cpp	2009-04-12 20:34:46 UTC (rev 19691)
+++ trunk/blender/source/gameengine/Expressions/InputParser.cpp	2009-04-12 22:05:09 UTC (rev 19692)
@@ -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





More information about the Bf-blender-cvs mailing list