diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-03-18 23:14:03 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-04-03 20:22:41 +0200 |
commit | 52d3a48128b66e731afd54cec7cab0a687d303cf (patch) | |
tree | ade3bfd91c7e92ed83ea79219ed773fbc009ee0e /src/init.cpp | |
parent | 703d64469eb2b607adcd864555b5fe1d981bf51f (diff) |
VC2010 compile fixes
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index 4078b7e0cb..8531b2071a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -24,6 +24,10 @@ Q_IMPORT_PLUGIN(qkrcodecs) Q_IMPORT_PLUGIN(qtaccessiblewidgets) #endif +#ifdef WIN32 +#define strncasecmp strnicmp +#endif + using namespace std; using namespace boost; |