Fixed build failure on windows.

1>  import-svg.cpp
1>ext\import-svg.cpp(81): error C3861: 'strncasecmp': identifier not found
1>ext\import-svg.cpp(87): error C3861: 'strncasecmp': identifier not found
1>ext\import-svg.cpp(92): error C3861: 'strncasecmp': identifier not found
This commit is contained in:
Jordan Cristiano 2017-09-14 00:19:55 -04:00 committed by Jordan Cristiano
parent 33f160dc8c
commit 30da48a1bc
1 changed files with 1 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#ifdef _WIN32
#pragma warning(disable:4996)
#define strncasecmp(s1, s2, n) _strnicmp(s1, s2, n)
#endif
#define ARC_SEGMENTS_PER_PI 2