[Cmake-commits] CMake branch, next, updated. v2.8.3-1141-g046775d
Ben Boeckel
ben.boeckel at kitware.com
Mon Jan 3 08:51:52 EST 2011
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via 046775df9c04739f6e458b018c25b69d2ac89c65 (commit)
via 89c25443a62de7a06fc0daa9f552a70aa9692aa0 (commit)
via 5625dee390fc0c35755683b7302e49967107bbf0 (commit)
from cd1010a562140632b542d6dea01f929f35900f63 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=046775df9c04739f6e458b018c25b69d2ac89c65
commit 046775df9c04739f6e458b018c25b69d2ac89c65
Merge: cd1010a 89c2544
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Mon Jan 3 08:51:49 2011 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jan 3 08:51:49 2011 -0500
Merge topic 'dev/strict-mode' into next
89c2544 Checking for a definition is a usage
5625dee Don't output to stderr in the GUI
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=89c25443a62de7a06fc0daa9f552a70aa9692aa0
commit 89c25443a62de7a06fc0daa9f552a70aa9692aa0
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Mon Jan 3 08:47:04 2011 -0500
Commit: Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Mon Jan 3 08:47:04 2011 -0500
Checking for a definition is a usage
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx
index 0913e0a..7044049 100644
--- a/Source/cmMakefile.cxx
+++ b/Source/cmMakefile.cxx
@@ -2176,6 +2176,7 @@ const char* cmMakefile::GetRequiredDefinition(const char* name) const
bool cmMakefile::IsDefinitionSet(const char* name) const
{
const char* def = this->Internal->VarStack.top().Get(name);
+ this->Internal->VarUsageStack.top().insert(name);
if(!def)
{
def = this->GetCacheManager()->GetCacheValue(name);
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5625dee390fc0c35755683b7302e49967107bbf0
commit 5625dee390fc0c35755683b7302e49967107bbf0
Author: Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Mon Jan 3 08:45:48 2011 -0500
Commit: Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Mon Jan 3 08:45:48 2011 -0500
Don't output to stderr in the GUI
diff --git a/Source/QtDialog/QCMake.cxx b/Source/QtDialog/QCMake.cxx
index 48871c2..182db0f 100644
--- a/Source/QtDialog/QCMake.cxx
+++ b/Source/QtDialog/QCMake.cxx
@@ -166,7 +166,6 @@ void QCMake::configure()
this->CMakeInstance->CreateGlobalGenerator(this->Generator.toAscii().data()));
this->CMakeInstance->LoadCache();
this->CMakeInstance->SetSuppressDevWarnings(this->SuppressDevWarnings);
- std::cerr << "set warn uninitialized " << this->WarnUninitializedMode << "\n";
this->CMakeInstance->SetWarnUninitialized(this->WarnUninitializedMode);
this->CMakeInstance->SetWarnUnused(this->WarnUnusedMode);
this->CMakeInstance->PreLoadCMakeFiles();
-----------------------------------------------------------------------
Summary of changes:
Source/QtDialog/QCMake.cxx | 1 -
Source/cmMakefile.cxx | 1 +
2 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list