Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mingw.patch « patches « carve « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c237edf18e9e3f5c003dbee1de093ba20093364b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff -r 525472fb477a include/carve/win32.h
--- a/include/carve/win32.h	Sun Jan 15 23:07:40 2012 -0500
+++ b/include/carve/win32.h	Wed Jan 18 00:40:10 2012 +0600
@@ -8,9 +8,11 @@
 #include <string.h>
 #include <stdlib.h>
 
+#if !defined(__MINGW32__)
 inline int strcasecmp(const char *a, const char *b) {
   return _stricmp(a,b);
 }
+#endif
 
 inline void srandom(unsigned long input) {
   srand(input);