diff options
author | Dwight <dmerriman@gmail.com> | 2010-02-23 13:10:09 -0500 |
---|---|---|
committer | Dwight <dmerriman@gmail.com> | 2010-02-23 13:10:09 -0500 |
commit | a61c72881ea963599ddab103bb597f84598225e4 (patch) | |
tree | cc866ee3888dee3998d786e334827b8780a9f540 | |
parent | e7365d7c92080052d3659cb8f9eddb9bd6ffd710 (diff) | |
download | mongo-a61c72881ea963599ddab103bb597f84598225e4.tar.gz |
fix a couple things in vcproj for release builds
-rw-r--r-- | db/concurrency.h | 2 | ||||
-rw-r--r-- | db/db.vcproj | 2 | ||||
-rw-r--r-- | dbtests/test.vcproj | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/db/concurrency.h b/db/concurrency.h index 2bcabe5ad8c..cd336c36cc2 100644 --- a/db/concurrency.h +++ b/db/concurrency.h @@ -35,7 +35,7 @@ #define assert xassert #define HAVE_READLOCK #else -#warning built with boost version 1.34 or older limited concurrency +#warning built with boost version 1.34 or older - limited concurrency #endif namespace mongo { diff --git a/db/db.vcproj b/db/db.vcproj index e7cb073f9dd..4e9844ad6e5 100644 --- a/db/db.vcproj +++ b/db/db.vcproj @@ -144,7 +144,7 @@ />
<Tool
Name="VCLinkerTool"
- AdditionalDependencies="ws2_32.lib"
+ AdditionalDependencies="ws2_32.lib psapi.lib"
LinkIncremental="1"
AdditionalLibraryDirectories=""c:\program files\boost\boost_1_35_0\lib""
GenerateDebugInformation="true"
diff --git a/dbtests/test.vcproj b/dbtests/test.vcproj index e2b27af8bde..9f21a9929fa 100644 --- a/dbtests/test.vcproj +++ b/dbtests/test.vcproj @@ -144,7 +144,7 @@ />
<Tool
Name="VCLinkerTool"
- AdditionalDependencies="ws2_32.lib"
+ AdditionalDependencies="ws2_32.lib psapi.lib"
LinkIncremental="1"
AdditionalLibraryDirectories=""c:\program files\boost\boost_1_35_0\lib""
GenerateDebugInformation="true"
|