I don't have a copy of MSVC6 so I don't know if this problem exists there also, but in MSVC7 (aka Visual C++ .NET), if I compile with __STDC__ for ANSI, stricmp is not defined.
One option is to include in config-win32.h:
#ifdef __STDC__
#define stricmp _stricmp
#endif
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
the stricmp dependency has been removed in 0.3.1 altogether, because stricmp/strcasecmp was no longer required. It got into 0.2.7 only to support a patch that I later backed out.
Thanks,
Bastiaan
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I don't have a copy of MSVC6 so I don't know if this problem exists there also, but in MSVC7 (aka Visual C++ .NET), if I compile with __STDC__ for ANSI, stricmp is not defined.
One option is to include in config-win32.h:
#ifdef __STDC__
#define stricmp _stricmp
#endif
the stricmp dependency has been removed in 0.3.1 altogether, because stricmp/strcasecmp was no longer required. It got into 0.2.7 only to support a patch that I later backed out.
Thanks,
Bastiaan