diff options
author | Andy Schwerin <schwerin@10gen.com> | 2013-12-11 19:07:39 -0500 |
---|---|---|
committer | Andy Schwerin <schwerin@10gen.com> | 2013-12-11 19:07:39 -0500 |
commit | 172bf6a4e24a65da9a6269507c2385c797d35cb7 (patch) | |
tree | f3104ccaae750fa6225b619077a6f15dc01601f2 /src/mongo/util | |
parent | 3c028606952aaa726e98859208f40b09e5cc4343 (diff) | |
download | mongo-172bf6a4e24a65da9a6269507c2385c797d35cb7.tar.gz |
Revert "SERVER-5214 Require Windows C++ driver consumers to link against the DLL version of the C++ runtime."
This reverts commit aac9e25fb096234bed6ea48217651a05afa9e10e, which currently
breaks the Windows build.
Diffstat (limited to 'src/mongo/util')
-rw-r--r-- | src/mongo/util/version.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mongo/util/version.cpp b/src/mongo/util/version.cpp index 8b53e439c9d..c58d3ee407e 100644 --- a/src/mongo/util/version.cpp +++ b/src/mongo/util/version.cpp @@ -138,6 +138,9 @@ namespace mongo { ss << "not-scons win"; ss << " mscver:" << _MSC_FULL_VER << " built:" << __DATE__; ss << " boostver:" << BOOST_VERSION; +#if( !defined(_MT) ) +#error _MT is not defined +#endif ss << (sizeof(char *) == 8) ? " 64bit" : " 32bit"; return ss.str(); } |