Subject: | HTML::Strip 2.09 cannot build on Windows with MSVC |
There is link error about strcasecmp when building on Windows with MSVC.
Actually strip_html.c has below defined,
#ifdef _MSC_VER
#define strcasecmp(a,b) stricmp(a,b)
#endif
But that's at the middle of the file, and before that part there are also calls to strcasecmp. So please move this piece of macro to the beginning of the file. Thanks!