diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-03-18 23:14:03 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-04-03 20:22:41 +0200 |
| commit | 52d3a48128b66e731afd54cec7cab0a687d303cf (patch) | |
| tree | ade3bfd91c7e92ed83ea79219ed773fbc009ee0e /src/init.cpp | |
| parent | Merge pull request #934 from luke-jr/gitian_luke (diff) | |
| download | discoin-52d3a48128b66e731afd54cec7cab0a687d303cf.tar.xz discoin-52d3a48128b66e731afd54cec7cab0a687d303cf.zip | |
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 4078b7e0c..8531b2071 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; |