libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit ff1b82d88405cc7dd59702261e0d81be3fa59f1b
parent 2bfe4bd0ade69b4a1448bfbc22f205c47c67c275
Author: LRN <lrn1986@gmail.com>
Date:   Sun, 21 Apr 2013 10:56:47 +0000

Another plibc header fix

Diffstat:
Msrc/include/plibc.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/include/plibc.h b/src/include/plibc.h @@ -673,7 +673,7 @@ char *strtok_r (char *ptr, const char *sep, char **end); #endif char *stpcpy(char *dest, const char *src); char *strcasestr(const char *haystack_start, const char *needle_start); -#ifndef __MINGW64__ +#ifndef __MINGW64_VERSION_MAJOR #define strcasecmp(a, b) stricmp(a, b) #define wcscasecmp(a, b) wcsicmp(a, b) #define strncasecmp(a, b, c) strnicmp(a, b, c)