Woo Hoo. First git commit.

Changes for VC2013

Now, I can build Blender with VC2013 with Cycles, Collada, OpenExr,OpenImageIO disabled. Also, you need VC2008 sp1 installed to make old libs compatible.
This commit is contained in:
2013-11-29 14:50:59 -05:00
parent cd4fd50562
commit e2429d6492
12 changed files with 19 additions and 4 deletions

View File

@@ -144,9 +144,13 @@ static const int NAN_INT = 0x7FC00000;
#ifdef WIN32
# ifndef FREE_WINDOWS
# define isnan(n) _isnan(n)
# ifndef isnan
# define isnan(n) _isnan(n)
# endif
# define finite _finite
# define hypot _hypot
# ifndef hypot
# define hypot(a, b) _hypot(a, b)
# endif
# endif
#endif