diff --git a/fteqtv/qtv.h b/fteqtv/qtv.h index fd281d3e9..63245d3c1 100644 --- a/fteqtv/qtv.h +++ b/fteqtv/qtv.h @@ -131,6 +131,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include #include +#ifndef _WIN32 +//stricmp is ansi, strcasecmp is unix. + #define stricmp strcasecmp + #define strnicmp strncasecmp +#endif + //linux and other systems have strlcat / strlcpy //we support windows and can't use those