summaryrefslogtreecommitdiff
path: root/fipstest.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-09-15 02:38:57 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-09-15 02:38:57 +0000
commitf6c583203fbf3fc6094a6a5dcc30e6cfa62bd6e3 (patch)
tree1e00da0bd4706ff55aeff43c2891343c1dc545bf /fipstest.cpp
parent391e30799f0b6d4a034eb2352e682440898b62f4 (diff)
downloadcryptopp-f6c583203fbf3fc6094a6a5dcc30e6cfa62bd6e3.tar.gz
fix compile with fix compile for for STLport 5.1.3 and MSVC 2005
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@394 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'fipstest.cpp')
-rw-r--r--fipstest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fipstest.cpp b/fipstest.cpp
index 01ab761..3298a40 100644
--- a/fipstest.cpp
+++ b/fipstest.cpp
@@ -279,7 +279,7 @@ bool IntegrityCheckModule(const char *moduleFilename, const byte *expectedModule
char moduleFilenameBuf[MAX_PATH] = "";
if (moduleFilename == NULL)
{
-#if (defined(_MSC_VER) && _MSC_VER >= 1400) // ifstream doesn't support wide filename on other compilers
+#if (_MSC_VER >= 1400 && !defined(_STLPORT_VERSION)) // ifstream doesn't support wide filename on other compilers
wchar_t wideModuleFilename[MAX_PATH];
if (GetModuleFileNameW(s_hModule, wideModuleFilename, MAX_PATH) > 0)
{