Fix libmv build with visual studio 2012.

Patch #35158 by Jurgen Herrmann.
This commit is contained in:
Brecht Van Lommel 2013-05-11 13:10:39 +00:00
parent f35a9328e0
commit 309db8032c

@ -94,7 +94,10 @@ enum { STDIN_FILENO = 0, STDOUT_FILENO = 1, STDERR_FILENO = 2 };
#define strncasecmp _strnicmp
/* In windows-land, hash<> is called hash_compare<> (from xhash.h) */
#define hash hash_compare
/* VC11 provides std::hash */
#if defined(_MSC_VER) && (_MSC_VER < 1700)
#define hash hash_compare
#endif
/* Sleep is in ms, on windows */
#define sleep(secs) Sleep((secs) * 1000)