8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

MSVC 2005 have defined _MSC_VER as 1400, so make check for CRT version correct.

It must fix bug CORE-2366 : Embeded can't find/open DLLs (snapshot 3.9.2009)
This commit is contained in:
hvlad 2009-03-13 15:41:49 +00:00
parent adb8b599f9
commit 41e767945b

View File

@ -74,7 +74,7 @@ public:
// if we don't use MSVC then we don't use MS CRT ?
// NS: versions of MSVC before 2005 and, as preliminary reports suggest,
// after 2008 do not need this hack
#if !defined(_MSC_VER) || (_MSC_VER <= 1400)
#if !defined(_MSC_VER) || (_MSC_VER < 1400)
return;
#else