[Cmake-commits] CMake branch, master, updated. v2.8.4-92-gfe44984

2011-02-22 Thread KWSys Robot
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, master has been updated
   via  fe449843b7648489fe9fca2ddde231e5e01050ec (commit)
  from  62f816adde5312eb97724796efa8e4dff9534f54 (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=fe449843b7648489fe9fca2ddde231e5e01050ec
commit fe449843b7648489fe9fca2ddde231e5e01050ec
Author: KWSys Robot 
AuthorDate: Wed Feb 23 00:01:04 2011 -0500
Commit: KWSys Robot 
CommitDate: Wed Feb 23 00:11:47 2011 -0500

KWSys Nightly Date Stamp

diff --git a/Source/kwsys/kwsysDateStamp.cmake 
b/Source/kwsys/kwsysDateStamp.cmake
index 8d4ad8b..22783ed 100644
--- a/Source/kwsys/kwsysDateStamp.cmake
+++ b/Source/kwsys/kwsysDateStamp.cmake
@@ -18,4 +18,4 @@ SET(KWSYS_DATE_STAMP_YEAR  2011)
 SET(KWSYS_DATE_STAMP_MONTH 02)
 
 # KWSys version date day component.  Format is DD.
-SET(KWSYS_DATE_STAMP_DAY   22)
+SET(KWSYS_DATE_STAMP_DAY   23)

---

Summary of changes:
 Source/kwsys/kwsysDateStamp.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v2.8.4-989-ged5bad8

2011-02-22 Thread Eric Noulard
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  ed5bad815d43106784547ebda938b4d58c257b47 (commit)
   via  4deb308e82b8f9e56ce41eba211f330ff66902a3 (commit)
   via  8c450f6287e45fa737de7d09a4f29ee7f4fdc9dd (commit)
  from  1929bb27a92aeb99edf25684d0a0583ea0090d8b (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=ed5bad815d43106784547ebda938b4d58c257b47
commit ed5bad815d43106784547ebda938b4d58c257b47
Merge: 1929bb2 4deb308
Author: Eric Noulard 
AuthorDate: Tue Feb 22 18:03:36 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 18:03:36 2011 -0500

Merge topic 'CPack-ChangeComponentNamingScheme' into next

4deb308 CPack Authorize DISPLAY_NAME usage in component package
8c450f6 CPack remove "-ALL" suffix for ALL-IN-ONE packages


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4deb308e82b8f9e56ce41eba211f330ff66902a3
commit 4deb308e82b8f9e56ce41eba211f330ff66902a3
Author: Eric NOULARD 
AuthorDate: Tue Feb 22 23:49:49 2011 +0100
Commit: Eric NOULARD 
CommitDate: Tue Feb 22 23:49:49 2011 +0100

CPack Authorize DISPLAY_NAME usage in component package

Second (last) part fix of feature request #11814

diff --git a/Source/CPack/cmCPackArchiveGenerator.cxx 
b/Source/CPack/cmCPackArchiveGenerator.cxx
index ff88412..3c670a1 100644
--- a/Source/CPack/cmCPackArchiveGenerator.cxx
+++ b/Source/CPack/cmCPackArchiveGenerator.cxx
@@ -121,9 +121,11 @@ int cmCPackArchiveGenerator::PackageComponents(bool 
ignoreGroup)
   << std::endl);
   // Begin the archive for this group
   std::string packageFileName= std::string(toplevel);
-  packageFileName += "/"
-+std::string(this->GetOption("CPACK_PACKAGE_FILE_NAME"))
-+"-"+compGIt->first + this->GetOutputExtension();
+  packageFileName += "/"+
+   GetComponentPackageFileName(this->GetOption("CPACK_PACKAGE_FILE_NAME"),
+   compGIt->first,
+   true)
+ + this->GetOutputExtension();
   // open a block in order to automatically close archive
   // at the end of the block
   {
@@ -154,9 +156,11 @@ int cmCPackArchiveGenerator::PackageComponents(bool 
ignoreGroup)
   std::string packageFileName = std::string(toplevel);
 
   localToplevel += "/"+ compIt->first;
-  packageFileName += "/"
-+std::string(this->GetOption("CPACK_PACKAGE_FILE_NAME"))
-+"-"+compIt->first + this->GetOutputExtension();
+  packageFileName += "/"+
+   GetComponentPackageFileName(this->GetOption("CPACK_PACKAGE_FILE_NAME"),
+   compIt->first,
+   false)
++ this->GetOutputExtension();
   {
 DECLARE_AND_OPEN_ARCHIVE(packageFileName,archive);
 // Add the files of this component to the archive
diff --git a/Source/CPack/cmCPackGenerator.cxx 
b/Source/CPack/cmCPackGenerator.cxx
index 69d9b8c..4cb4f36 100644
--- a/Source/CPack/cmCPackGenerator.cxx
+++ b/Source/CPack/cmCPackGenerator.cxx
@@ -1309,10 +1309,51 @@ int cmCPackGenerator::PrepareGroupingKind()
   return 1;
 }
 
+//--
 std::string cmCPackGenerator::GetComponentInstallDirNameSuffix(
 const std::string& componentName) {
   return componentName;
 }
+//--
+std::string cmCPackGenerator::GetComponentPackageFileName(
+const std::string& initialPackageFileName,
+const std::string& groupOrComponentName,
+bool isGroupName) {
+
+  /*
+   * the default behavior is to use the
+   * component [group] name as a suffix
+   */
+  std::string suffix="-"+groupOrComponentName;
+  /* check if we should use DISPLAY name */
+  std::string dispNameVar = "CPACK_"+Name+"_USE_DISPLAY_NAME_IN_FILENAME";
+  if (IsOn(dispNameVar.c_str()))
+{
+/* the component Group case */
+if (isGroupName)
+  {
+  std::string groupDispVar = "CPACK_COMPONENT_GROUP_"
+  + cmSystemTools::UpperCase(groupOrComponentName) + "_DISPLAY_NAME";
+  const char* groupDispName = GetOption(groupDispVar.c_str());
+  if (groupDispName)
+{
+suffix = "-"+std::string(groupDispName);
+}
+  }
+/* the [single] component case */
+else
+  {
+  std::string dispVar = "CPACK_COMPONENT_"
++ cmSystemTools::UpperCase(groupOrComponentName) + 
"_DISPLAY_NAME";
+const char* dispName = GetOption(dispVar.c_str());
+if(dispName)
+  {
+  suffix = "-"

[Cmake-commits] CMake branch, next, updated. v2.8.4-986-g1929bb2

2011-02-22 Thread Brad King
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  1929bb27a92aeb99edf25684d0a0583ea0090d8b (commit)
   via  7c5e412c4aa65557c1d59881447d368405801c40 (commit)
  from  0ae4931e93e3ad3360f10543c9581095ccb31bc5 (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=1929bb27a92aeb99edf25684d0a0583ea0090d8b
commit 1929bb27a92aeb99edf25684d0a0583ea0090d8b
Merge: 0ae4931 7c5e412
Author: Brad King 
AuthorDate: Tue Feb 22 17:29:25 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 17:29:25 2011 -0500

Merge topic 'doc-typo-fixes' into next

7c5e412 Documentation: Fix a few typos (#11883)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7c5e412c4aa65557c1d59881447d368405801c40
commit 7c5e412c4aa65557c1d59881447d368405801c40
Author: Modestas Vainius 
AuthorDate: Tue Feb 22 17:24:22 2011 -0500
Commit: Brad King 
CommitDate: Tue Feb 22 17:24:51 2011 -0500

Documentation: Fix a few typos (#11883)

W: cmake: manpage-has-errors-from-man usr/share/man/man1/cmake.1.gz 10029: 
warning [p 158, 13.5i]: can't break line
I: cmake: spelling-error-in-manpage usr/share/man/man1/cmake.1.gz 
informations information
I: cmake: spelling-error-in-manpage usr/share/man/man1/cmake.1.gz dependant 
dependent
I: cmake: spelling-error-in-manpage usr/share/man/man1/cmake.1.gz prefered 
preferred
I: cmake: spelling-error-in-binary ./usr/bin/cmake prefered preferred
I: cmake: spelling-error-in-binary ./usr/bin/cpack prefered preferred
I: cmake: spelling-error-in-binary ./usr/bin/ctest prefered preferred
I: cmake-data: spelling-error-in-manpage 
usr/share/man/man1/cmakepolicies.1.gz prefered preferred
I: cmake-curses-gui: spelling-error-in-binary ./usr/bin/ccmake prefered 
preferred
I: cmake-qt-gui: spelling-error-in-binary ./usr/bin/cmake-gui prefered 
preferred

diff --git a/Modules/CPackDeb.cmake b/Modules/CPackDeb.cmake
index 98d40d6..6c3398e 100644
--- a/Modules/CPackDeb.cmake
+++ b/Modules/CPackDeb.cmake
@@ -60,7 +60,7 @@
 # CPACK_DEBIAN_PACKAGE_DEBUG
 # Mandatory : NO
 # Default   : -
-# May be set when invoking cpack in order to trace debug informations
+# May be set when invoking cpack in order to trace debug information
 # during CPackDeb run.
 # CPACK_DEBIAN_PACKAGE_PREDEPENDS
 # Mandatory : NO
diff --git a/Modules/FindPostgreSQL.cmake b/Modules/FindPostgreSQL.cmake
index 6455c99..96b6741 100644
--- a/Modules/FindPostgreSQL.cmake
+++ b/Modules/FindPostgreSQL.cmake
@@ -1,6 +1,4 @@
-# Find the PostgreSQL installation.
-#
-# 
+# - Find the PostgreSQL installation.
 # Usage:
 # In your CMakeLists.txt file do something like this:
 # ...
diff --git a/Modules/UsewxWidgets.cmake b/Modules/UsewxWidgets.cmake
index 9ecfff0..a0f2e86 100644
--- a/Modules/UsewxWidgets.cmake
+++ b/Modules/UsewxWidgets.cmake
@@ -6,7 +6,7 @@
 #  # Note that for MinGW users the order of libs is important!
 #  FIND_PACKAGE(wxWidgets REQUIRED net gl core base)
 #  INCLUDE(${wxWidgets_USE_FILE})
-#  # and for each of your dependant executable/library targets:
+#  # and for each of your dependent executable/library targets:
 #  TARGET_LINK_LIBRARIES( ${wxWidgets_LIBRARIES})
 #
 # DEPRECATED
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx
index 2d1f792..37070b6 100644
--- a/Source/cmPolicies.cxx
+++ b/Source/cmPolicies.cxx
@@ -453,7 +453,7 @@ cmPolicies::cmPolicies()
 "Starting with CMake 2.8.4, if a cmake-module shipped with CMake (i.e. "
 "located in the CMake module directory) calls include() or "
 "find_package(), the files located in the the CMake module directory are "
-"prefered over the files in CMAKE_MODULE_PATH.  "
+"preferred over the files in CMAKE_MODULE_PATH.  "
 "This makes sure that the modules belonging to "
 "CMake always get those files included which they expect, and against "
 "which they were developed and tested.  "
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index b0e20ba..3b1f016 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -326,7 +326,7 @@ public:
*/
   bool FindSourceFiles();
 
-  ///! Return the prefered linker language for this target
+  ///! Return the preferred linker language for this target
   const char* GetLinkerLanguage(const char* config = 0);
 
   ///! Return the rule variable used to create this type of target,
diff --git a/Utilities/cmcurl/easy.c b/Utilities/cmcurl/easy.c
index f3c2273..209d1c3 100644
--- a/Utilities/cmcurl/easy.c
+++ b/Utilities/cmcurl/easy.c
@@ -708,7 +708,7 @@ void c

[Cmake-commits] CMake branch, next, updated. v2.8.4-982-g3a7d3d9

2011-02-22 Thread Brad King
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  3a7d3d97b136c81c26c411ab4539e2bd20d7642f (commit)
   via  1173cc4ab2dc23a2ac51442273127d2f909f3bc8 (commit)
  from  88a0a0e8e8ce50ce527ecbf3d86022ae7f031b6a (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=3a7d3d97b136c81c26c411ab4539e2bd20d7642f
commit 3a7d3d97b136c81c26c411ab4539e2bd20d7642f
Merge: 88a0a0e 1173cc4
Author: Brad King 
AuthorDate: Tue Feb 22 15:49:40 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 15:49:40 2011 -0500

Merge topic 'ctest-git-submodule-recursive' into next

1173cc4 CTest: Update Git submodules with --recursive


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1173cc4ab2dc23a2ac51442273127d2f909f3bc8
commit 1173cc4ab2dc23a2ac51442273127d2f909f3bc8
Author: Brad King 
AuthorDate: Tue Feb 22 15:47:50 2011 -0500
Commit: Brad King 
CommitDate: Tue Feb 22 15:47:50 2011 -0500

CTest: Update Git submodules with --recursive

Fail if submodules exist and the git version is less than 1.6.5.0.

Inspired-by: Johan Björk 

diff --git a/Source/CTest/cmCTestGIT.cxx b/Source/CTest/cmCTestGIT.cxx
index aa9e55b..3f55f85 100644
--- a/Source/CTest/cmCTestGIT.cxx
+++ b/Source/CTest/cmCTestGIT.cxx
@@ -24,10 +24,19 @@
 #include 
 
 //
+static unsigned int cmCTestGITVersion(unsigned int epic, unsigned int major,
+  unsigned int minor, unsigned int fix)
+{
+  // 1.6.5.0 maps to 10605000
+  return fix + minor*1000 + major*10 + epic*1000;
+}
+
+//
 cmCTestGIT::cmCTestGIT(cmCTest* ct, std::ostream& log):
   cmCTestGlobalVC(ct, log)
 {
   this->PriorRev = this->Unknown;
+  this->CurrentGitVersion = 0;
 }
 
 //
@@ -263,7 +272,21 @@ bool cmCTestGIT::UpdateImpl()
 
   std::string top_dir = this->FindTopDir();
   const char* git = this->CommandLineTool.c_str();
-  char const* git_submodule[] = {git, "submodule", "update", 0};
+  const char* recursive = "--recursive";
+
+  // Git < 1.6.5.0 did not support --recursive
+  if(this->GetGitVersion() < cmCTestGITVersion(1,6,5,0))
+{
+recursive = 0;
+// No need to require >= 1.6.5.0 if there are no submodules.
+if(cmSystemTools::FileExists((top_dir + "/.gitmodules").c_str()))
+  {
+  this->Log << "Git >= 1.6.5.0 required for submodule support\n";
+  return false;
+  }
+}
+
+  char const* git_submodule[] = {git, "submodule", "update", recursive, 0};
   OutputLogger submodule_out(this->Log, "submodule-out> ");
   OutputLogger submodule_err(this->Log, "submodule-err> ");
   return this->RunChild(git_submodule, &submodule_out, &submodule_err,
@@ -271,6 +294,27 @@ bool cmCTestGIT::UpdateImpl()
 }
 
 //
+unsigned int cmCTestGIT::GetGitVersion()
+{
+  if(!this->CurrentGitVersion)
+{
+const char* git = this->CommandLineTool.c_str();
+char const* git_version[] = {git, "--version", 0};
+std::string version;
+OneLineParser version_out(this, "version-out> ", version);
+OutputLogger version_err(this->Log, "version-err> ");
+unsigned int v[4] = {0,0,0,0};
+if(this->RunChild(git_version, &version_out, &version_err) &&
+   sscanf(version.c_str(), "git version %u.%u.%u.%u",
+  &v[0], &v[1], &v[2], &v[3]) >= 3)
+  {
+  this->CurrentGitVersion = cmCTestGITVersion(v[0], v[1], v[2], v[3]);
+  }
+}
+  return this->CurrentGitVersion;
+}
+
+//
 /* Diff format:
 
:src-mode dst-mode src-sha1 dst-sha1 status\0
diff --git a/Source/CTest/cmCTestGIT.h b/Source/CTest/cmCTestGIT.h
index 1765340..f4fae8f 100644
--- a/Source/CTest/cmCTestGIT.h
+++ b/Source/CTest/cmCTestGIT.h
@@ -27,6 +27,8 @@ public:
   virtual ~cmCTestGIT();
 
 private:
+  unsigned int CurrentGitVersion;
+  unsigned int GetGitVersion();
   std::string GetWorkingRevision();
   virtual void NoteOldRevision();
   virtual void NoteNewRevision();

---

Summary of changes:
 Source/CTest/cmCTestGIT.cxx |   46 ++-
 Source/CTest/cmCTestGIT.h   |2 +
 2 files changed, 47 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing li

[Cmake-commits] CMake branch, next, updated. v2.8.4-980-g88a0a0e

2011-02-22 Thread Alexander Neundorf
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  88a0a0e8e8ce50ce527ecbf3d86022ae7f031b6a (commit)
   via  e8a97e075aa571b31287b23c80fcbadf892ce5c0 (commit)
  from  58d3932887eb2edfdcdeaddbd335d983def55822 (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=88a0a0e8e8ce50ce527ecbf3d86022ae7f031b6a
commit 88a0a0e8e8ce50ce527ecbf3d86022ae7f031b6a
Merge: 58d3932 e8a97e0
Author: Alexander Neundorf 
AuthorDate: Tue Feb 22 15:22:47 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 15:22:47 2011 -0500

Merge topic 'EclipseLinkedResourcesToSubProjects2' into next

e8a97e0 Eclipse projects: created one linked resource for each subproject


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e8a97e075aa571b31287b23c80fcbadf892ce5c0
commit e8a97e075aa571b31287b23c80fcbadf892ce5c0
Author: Alex Neundorf 
AuthorDate: Sun Feb 13 01:15:11 2011 +0100
Commit: Alex Neundorf 
CommitDate: Sun Feb 13 01:15:11 2011 +0100

Eclipse projects: created one linked resource for each subproject

Now a virtual folder "Subprojects" is created, and in this virtual folder
is a linked resource for each project().
This can be considered a fix for #11657

Alex

diff --git a/Source/cmExtraEclipseCDT4Generator.cxx 
b/Source/cmExtraEclipseCDT4Generator.cxx
index eb78647..c4ea425 100644
--- a/Source/cmExtraEclipseCDT4Generator.cxx
+++ b/Source/cmExtraEclipseCDT4Generator.cxx
@@ -102,7 +102,7 @@ void cmExtraEclipseCDT4Generator::CreateSourceProjectFile() 
const
   fout <<
 "\n"
 "\n"
-"\t" << name << "\n"
+"\t" << this->EscapeForXML(name) << "\n"
 "\t\n"
 "\t\n"
 "\t\n"
@@ -376,11 +376,10 @@ void cmExtraEclipseCDT4Generator::CreateProjectFile()
 "\t\n"
 ;
 
-  // TODO: refactor this
+  fout << "\t\n";
   // create linked resources
   if (this->IsOutOfSourceBuild)
 {
-fout << "\t\n";
 // create a linked resource to CMAKE_SOURCE_DIR
 // (this is not done anymore for each project because of
 // http://public.kitware.com/Bug/view.php?id=9978 and because I found it
@@ -399,18 +398,48 @@ void cmExtraEclipseCDT4Generator::CreateProjectFile()
   this->SrcLinkedResources.push_back(sourceLinkedResourceName);
   }
 
-// for EXECUTABLE_OUTPUT_PATH when not in binary dir
-this->AppendOutLinkedResource(fout,
-  mf->GetSafeDefinition("CMAKE_RUNTIME_OUTPUT_DIRECTORY"),
-  mf->GetSafeDefinition("EXECUTABLE_OUTPUT_PATH"));
-// for LIBRARY_OUTPUT_PATH when not in binary dir
-this->AppendOutLinkedResource(fout,
-  mf->GetSafeDefinition("CMAKE_LIBRARY_OUTPUT_DIRECTORY"),
-  mf->GetSafeDefinition("LIBRARY_OUTPUT_PATH"));
+}
+
+  // for each sub project create a linked resource to the source dir
+  // - only if it is an out-of-source build
+  this->AppendLinkedResource(fout, "[Subprojects]",
+ "virtual:/virtual");
 
-fout << "\t\n";
+  for (std::map >::const_iterator
+   it = this->GlobalGenerator->GetProjectMap().begin();
+   it != this->GlobalGenerator->GetProjectMap().end();
+   ++it)
+{
+std::string linkSourceDirectory = this->GetEclipsePath(
+it->second[0]->GetMakefile()->GetStartDirectory());
+// a linked resource must not point to a parent directory of .project or
+// .project itself
+if ((this->HomeOutputDirectory != linkSourceDirectory) &&
+!cmSystemTools::IsSubDirectory(this->HomeOutputDirectory.c_str(),
+   linkSourceDirectory.c_str()))
+  {
+  std::string linkName = "[Subprojects]/";
+  linkName += it->first;
+  this->AppendLinkedResource(fout, linkName,
+ this->GetEclipsePath(linkSourceDirectory));
+  this->SrcLinkedResources.push_back(it->first);
+  }
 }
 
+  // I'm not sure this makes too much sense. There can be different
+  // output directories in different subdirs, so we would need more of them.
+
+  // for EXECUTABLE_OUTPUT_PATH when not in binary dir
+  this->AppendOutLinkedResource(fout,
+mf->GetSafeDefinition("CMAKE_RUNTIME_OUTPUT_DIRECTORY"),
+mf->GetSafeDefinition("EXECUTABLE_OUTPUT_PATH"));
+  // for LIBRARY_OUTPUT_PATH when not in binary dir
+  this->AppendOutLinkedResource(fout,
+mf->GetSafeDefinition("CMAKE_LIBRARY_OUTPUT_DIRECTORY"),
+mf->GetSafeDefinition("LIBRARY_OUTPUT_PATH"));
+
+  fout << "\t\n";
+
   fout << "\n";
 }
 
@@ -551,14 +580,15 @@ void cmExtraEclipseCDT4Generator::CreateCProjectFile() 
const
it != this->SrcLinkedResources.end();
++it)
   

[Cmake-commits] CMake branch, next, updated. v2.8.4-978-g58d3932

2011-02-22 Thread Brad King
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  58d3932887eb2edfdcdeaddbd335d983def55822 (commit)
   via  62f816adde5312eb97724796efa8e4dff9534f54 (commit)
  from  af87476c9c418f83c019d491fc3b8ae8d531c86b (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=58d3932887eb2edfdcdeaddbd335d983def55822
commit 58d3932887eb2edfdcdeaddbd335d983def55822
Merge: af87476 62f816a
Author: Brad King 
AuthorDate: Tue Feb 22 14:36:43 2011 -0500
Commit: Brad King 
CommitDate: Tue Feb 22 14:36:43 2011 -0500

Merge branch 'master' into next


---

Summary of changes:


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-91-g62f816a

2011-02-22 Thread Brad King
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, master has been updated
   via  62f816adde5312eb97724796efa8e4dff9534f54 (commit)
   via  7a1027a1b6d1544bae9329f42c0872a551859572 (commit)
   via  4c1c358332e9dd2b9ec165450f64d3a542e3433a (commit)
   via  43cb9b8276a70d153d56a69d5c61daaf2bc51b78 (commit)
  from  521d2445313e809def1a4c1dfb23dd5ed945fead (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=62f816adde5312eb97724796efa8e4dff9534f54
commit 62f816adde5312eb97724796efa8e4dff9534f54
Merge: 521d244 7a1027a
Author: Brad King 
AuthorDate: Tue Feb 22 14:36:33 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:36:33 2011 -0500

Merge topic 'qt4-fphsa'

7a1027a When checking find_package() components, special case qtmain.
4c1c358 FindQt4: Include builtin FindPackageHandleStandardArgs directly
43cb9b8 Change to use fphsa to check required variables and version.


---

Summary of changes:
 Modules/FindQt4.cmake |  185 ++---
 1 files changed, 52 insertions(+), 133 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v2.8.4-976-gaf87476

2011-02-22 Thread Brad King
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  af87476c9c418f83c019d491fc3b8ae8d531c86b (commit)
   via  521d2445313e809def1a4c1dfb23dd5ed945fead (commit)
   via  59cfdd5c77c8589068963a6c0bc5caadbf8b (commit)
   via  cbc5e31f86b95cf502c77808d185cd0e2624cdb2 (commit)
   via  6250c7324f874060f43cf760d8ad349add7fb5e2 (commit)
   via  6dc8c252266f2464ce8067eea2897818067be53d (commit)
   via  5239fb0dfe5037787098e7b57af74f979c7cae84 (commit)
   via  67c542a3cca8eed7e3c5994e1678f1d51365bc37 (commit)
   via  7dcf2269ecd88e9d7c97ce8536db7c8ef32b61a4 (commit)
   via  c5f27110abac57b027b36127173654b572c7c3cb (commit)
   via  2d2f79a9957e6f9f3fdc8fed1cb8f72162bd665c (commit)
   via  01b65de3f943f9828efd8e3a56533f495a9125fc (commit)
   via  f556773f01f73bd5108b1fdbdee89f85e8b7fb47 (commit)
   via  cc5bbed52a73e8381ae682c171f6b314f8f9f6d5 (commit)
   via  15ff343d23c7c424bc56fd1f156869d8d00e3c34 (commit)
   via  11f55fff8fc8946535afdd43d16ffe9384c5e1c8 (commit)
   via  6e450ed7f05e98216bc4ddd9f2c82149603de964 (commit)
   via  a38c1b3584e3009d525caa656798ab8b1dd5e9f8 (commit)
   via  554641f320dfaed924a8a0edd89d7a69cc3943f2 (commit)
   via  e0d0e879cf8d381ad1dfce6152aa4ab0459c5369 (commit)
   via  542f45f4521ed4702c948a8750e2789b07017d48 (commit)
   via  45efcc8fa6eff6447402c9314953404d85d2a2c8 (commit)
   via  64d997a78c1f2a24a8fd1978856a2b5f4a97a0f9 (commit)
   via  6ec1ae2108afb8d9a72783fe945ad2410f08b4c1 (commit)
   via  c033ba676938859c372bf31f057bc9a478d10d02 (commit)
   via  52e2c22ee9ca0053f538c0982d0a854c28a4547c (commit)
   via  f866b208800c398e7bdf50c2d1a05b2b2f462c2d (commit)
   via  fe07b5eae6e1216d576044b47802db084a4a6f7a (commit)
   via  d0b32ca5cd729fe7a51a59794ba6c2e6931f674b (commit)
   via  b346093a030887b4e7fd0c35c5b2535ad3093dba (commit)
   via  4d8fee46598d857410a3960aa2d352ebae45cdfc (commit)
   via  377ed8e764468e926f611839588860da247413f7 (commit)
   via  37e4b034d4df278e10bafe3ffa2dafee1aa100aa (commit)
   via  70bd240e6ce6f155e70a1443a42202ba343c1def (commit)
  from  5da4d417908032185d105c7c67983f5c0df3045f (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=af87476c9c418f83c019d491fc3b8ae8d531c86b
commit af87476c9c418f83c019d491fc3b8ae8d531c86b
Merge: 5da4d41 521d244
Author: Brad King 
AuthorDate: Tue Feb 22 14:33:15 2011 -0500
Commit: Brad King 
CommitDate: Tue Feb 22 14:33:15 2011 -0500

Merge branch 'master' into next


---

Summary of changes:


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-87-g521d244

2011-02-22 Thread Brad King
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, master has been updated
   via  521d2445313e809def1a4c1dfb23dd5ed945fead (commit)
   via  6a61a8a5383fe7418cdd893c97328a27b86b08da (commit)
  from  59cfdd5c77c8589068963a6c0bc5caadbf8b (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=521d2445313e809def1a4c1dfb23dd5ed945fead
commit 521d2445313e809def1a4c1dfb23dd5ed945fead
Merge: 59cfdd5 6a61a8a
Author: Brad King 
AuthorDate: Tue Feb 22 14:33:04 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:33:04 2011 -0500

Merge topic 'mingw-module-definition'

6a61a8a Honor module .def files with MinGW tools (#9997)


---

Summary of changes:
 Modules/Platform/Windows-GNU.cmake |1 +
 Tests/CMakeLists.txt   |5 -
 2 files changed, 5 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-85-g59cfdd5

2011-02-22 Thread Brad King
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, master has been updated
   via  59cfdd5c77c8589068963a6c0bc5caadbf8b (commit)
   via  4167be052f3f68e637bb491a0b725f476bc3d46b (commit)
  from  cbc5e31f86b95cf502c77808d185cd0e2624cdb2 (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=59cfdd5c77c8589068963a6c0bc5caadbf8b
commit 59cfdd5c77c8589068963a6c0bc5caadbf8b
Merge: cbc5e31 4167be0
Author: Brad King 
AuthorDate: Tue Feb 22 14:33:00 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:33:00 2011 -0500

Merge topic 'qt4-macfind'

4167be0 Fix issues with find_path() for QtCore include dir on Mac.  Fixes 
11868.


---

Summary of changes:
 Modules/FindQt4.cmake |   25 +
 1 files changed, 21 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-83-gcbc5e31

2011-02-22 Thread Brad King
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, master has been updated
   via  cbc5e31f86b95cf502c77808d185cd0e2624cdb2 (commit)
   via  1a8eed171bb41b75e09fa09117bfbd02fedc6b89 (commit)
   via  006124b44618db3ed672c7ea069b174b966429a1 (commit)
   via  8a8da3694b0f53aef5a677e94fc5855822493456 (commit)
   via  1462561a8cab7cf3cad9979019778f3c13b0bdf9 (commit)
  from  6250c7324f874060f43cf760d8ad349add7fb5e2 (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=cbc5e31f86b95cf502c77808d185cd0e2624cdb2
commit cbc5e31f86b95cf502c77808d185cd0e2624cdb2
Merge: 6250c73 1a8eed1
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:55 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:55 2011 -0500

Merge topic 
'resolve/add-STRING-subcommand-FIND-issue-11795/fix-2828-more-info-in-script-mode'

1a8eed1 Merge branch 'add-STRING-subcommand-FIND-issue-11795' into 
fix-2828-more-info-in-script-mode
006124b Avoid direct use of std::stringstream
8a8da36 Merge branch 'fix-2828-more-info-in-script-mode' into 
add-STRING-subcommand-FIND-issue-11795
1462561 Add a string(FIND) sub-command (#11795)


---

Summary of changes:
 Source/cmStringCommand.cxx  |   68 +++-
 Source/cmStringCommand.h|6 ++
 Tests/CMakeTests/StringTest.cmake.in|2 +-
 Tests/CMakeTests/StringTestScript.cmake |   77 +++
 4 files changed, 151 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-78-g6250c73

2011-02-22 Thread Brad King
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, master has been updated
   via  6250c7324f874060f43cf760d8ad349add7fb5e2 (commit)
   via  a58ace68ce3a0ca69d0f7e3f103eab65d7302a9a (commit)
   via  106958c047c9af783b0216916c8e0d8c52595ff6 (commit)
   via  94d1684a8fd0de4310874cd582636a8e26402da2 (commit)
  from  6dc8c252266f2464ce8067eea2897818067be53d (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=6250c7324f874060f43cf760d8ad349add7fb5e2
commit 6250c7324f874060f43cf760d8ad349add7fb5e2
Merge: 6dc8c25 a58ace6
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:48 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:48 2011 -0500

Merge topic 'fix-2828-more-info-in-script-mode'

a58ace6 Fix KWStyle line-too-long complaint (#2828)
106958c Add CMAKE_ARGC and CMAKE_ARGV0..N-1 variables (#2828)
94d1684 Add CMAKE_SCRIPT_MODE_FILE variable (#2828)


---

Summary of changes:
 Source/cmDocumentVariables.cxx  |   24 
 Source/cmGetCMakePropertyCommand.cxx|   21 +++--
 Source/cmMakefile.cxx   |   21 +
 Source/cmMakefile.h |   12 +++-
 Source/cmake.cxx|   20 +++-
 Source/cmake.h  |2 +-
 Tests/CMakeTests/StringTestScript.cmake |2 ++
 7 files changed, 85 insertions(+), 17 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-74-g6dc8c25

2011-02-22 Thread Brad King
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, master has been updated
   via  6dc8c252266f2464ce8067eea2897818067be53d (commit)
   via  8af8eab7a43aa80ba89d082e23928e19265be885 (commit)
  from  5239fb0dfe5037787098e7b57af74f979c7cae84 (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=6dc8c252266f2464ce8067eea2897818067be53d
commit 6dc8c252266f2464ce8067eea2897818067be53d
Merge: 5239fb0 8af8eab
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:43 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:43 2011 -0500

Merge topic 'fix-11877-sort-tests-correctly'

8af8eab Use stable_sort to preserve test order (#11877)


---

Summary of changes:
 Source/CTest/cmCTestMultiProcessHandler.cxx |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-72-g5239fb0

2011-02-22 Thread Brad King
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, master has been updated
   via  5239fb0dfe5037787098e7b57af74f979c7cae84 (commit)
   via  0cf1d72e3c1be9218f4dc0d1dcc0aaf03f160684 (commit)
   via  494bb8ada786be70f39807a574bea6a1ef98654d (commit)
  from  67c542a3cca8eed7e3c5994e1678f1d51365bc37 (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=5239fb0dfe5037787098e7b57af74f979c7cae84
commit 5239fb0dfe5037787098e7b57af74f979c7cae84
Merge: 67c542a 0cf1d72
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:36 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:36 2011 -0500

Merge topic 'CPackRPM-HonorAllComponentWays'

0cf1d72 CPackRPM  fix IRIX compiler warning (variable never used)
494bb8a CPackRPM  honors all the different ways of packaging components


---

Summary of changes:
 Source/CPack/cmCPackArchiveGenerator.cxx |2 -
 Source/CPack/cmCPackGenerator.cxx|   36 +-
 Source/CPack/cmCPackGenerator.h  |   13 ++
 Source/CPack/cmCPackRPMGenerator.cxx |  188 +++---
 Source/CPack/cmCPackRPMGenerator.h   |   13 ++
 5 files changed, 229 insertions(+), 23 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-69-g67c542a

2011-02-22 Thread Brad King
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, master has been updated
   via  67c542a3cca8eed7e3c5994e1678f1d51365bc37 (commit)
   via  2a9f7f96b804ed929c56826c8477895c5924befe (commit)
  from  7dcf2269ecd88e9d7c97ce8536db7c8ef32b61a4 (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=67c542a3cca8eed7e3c5994e1678f1d51365bc37
commit 67c542a3cca8eed7e3c5994e1678f1d51365bc37
Merge: 7dcf226 2a9f7f9
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:31 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:31 2011 -0500

Merge topic 'AddCustomTargetSourcesToCodeBlocksProject'

2a9f7f9 Also add the SOURCES from add_custom_target() to CodeBlocks 
projects (#11736)


---

Summary of changes:
 Source/cmExtraCodeBlocksGenerator.cxx |7 +++
 1 files changed, 7 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-67-g7dcf226

2011-02-22 Thread Brad King
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, master has been updated
   via  7dcf2269ecd88e9d7c97ce8536db7c8ef32b61a4 (commit)
   via  79e13af195e8664a18449b09d3bc2f0e04c80992 (commit)
   via  8074bca93ca3774d3ce8ca9195f1f08d36d6e7bb (commit)
   via  cb94587a88866f3278676ea011c78e1c9d3663ec (commit)
  from  c5f27110abac57b027b36127173654b572c7c3cb (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=7dcf2269ecd88e9d7c97ce8536db7c8ef32b61a4
commit 7dcf2269ecd88e9d7c97ce8536db7c8ef32b61a4
Merge: c5f2711 79e13af
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:27 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:27 2011 -0500

Merge topic 'FixBadXMLInEclipseProjects'

79e13af Add XML escaping for directory name in Eclipse projects (#11658)
8074bca Fix XML escaping for target names in Eclipse project files (#11658)
cb94587 Fix XML escaping for the project() name in Eclipse projects (#11658)


---

Summary of changes:
 Source/cmExtraEclipseCDT4Generator.cxx |   19 ---
 1 files changed, 12 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-63-gc5f2711

2011-02-22 Thread Brad King
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, master has been updated
   via  c5f27110abac57b027b36127173654b572c7c3cb (commit)
   via  3b77516862e6e7991a5c6f16a0979dccfa439fce (commit)
  from  2d2f79a9957e6f9f3fdc8fed1cb8f72162bd665c (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=c5f27110abac57b027b36127173654b572c7c3cb
commit c5f27110abac57b027b36127173654b572c7c3cb
Merge: 2d2f79a 3b77516
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:22 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:22 2011 -0500

Merge topic 'init-LDFLAGS-issue-11840'

3b77516 Fix linker flag initialization from LDFLAGS (#11840)


---

Summary of changes:
 Modules/CMakeCommonLanguageInclude.cmake |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-61-g2d2f79a

2011-02-22 Thread Brad King
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, master has been updated
   via  2d2f79a9957e6f9f3fdc8fed1cb8f72162bd665c (commit)
   via  2516c05c2c73e768a7ec082a6fed8b2168489f6a (commit)
  from  01b65de3f943f9828efd8e3a56533f495a9125fc (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=2d2f79a9957e6f9f3fdc8fed1cb8f72162bd665c
commit 2d2f79a9957e6f9f3fdc8fed1cb8f72162bd665c
Merge: 01b65de 2516c05
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:16 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:16 2011 -0500

Merge topic 'vs-intel-dll-implib-outdir'

2516c05 VS: Create a Fortran DLL's import library directory


---

Summary of changes:
 Source/cmLocalVisualStudio6Generator.cxx |2 +-
 Source/cmLocalVisualStudio7Generator.cxx |2 +-
 Source/cmLocalVisualStudioGenerator.cxx  |8 ++--
 Source/cmLocalVisualStudioGenerator.h|2 +-
 4 files changed, 9 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-59-g01b65de

2011-02-22 Thread Brad King
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, master has been updated
   via  01b65de3f943f9828efd8e3a56533f495a9125fc (commit)
   via  6e02a3b2bf43f4785bb21eb1cf8bbc26ac1abc12 (commit)
  from  f556773f01f73bd5108b1fdbdee89f85e8b7fb47 (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=01b65de3f943f9828efd8e3a56533f495a9125fc
commit 01b65de3f943f9828efd8e3a56533f495a9125fc
Merge: f556773 6e02a3b
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:11 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:11 2011 -0500

Merge topic 'fix-11717-gcov-same-file-name'

6e02a3b CTest: Use the gcov --preserve-paths flag (#11717)


---

Summary of changes:
 Source/CTest/cmCTestCoverageHandler.cxx |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-57-gf556773

2011-02-22 Thread Brad King
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, master has been updated
   via  f556773f01f73bd5108b1fdbdee89f85e8b7fb47 (commit)
   via  667cf5b96368205544fb82ccce81358957987720 (commit)
  from  cc5bbed52a73e8381ae682c171f6b314f8f9f6d5 (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=f556773f01f73bd5108b1fdbdee89f85e8b7fb47
commit f556773f01f73bd5108b1fdbdee89f85e8b7fb47
Merge: cc5bbed 667cf5b
Author: Brad King 
AuthorDate: Tue Feb 22 14:32:01 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:32:01 2011 -0500

Merge topic 'fix-11761-less-file-download-noise'

667cf5b Make file DOWNLOAD less noisy (#11761)


---

Summary of changes:
 Source/cmFileCommand.cxx   |4 
 Tests/CMakeTests/FileDownloadTest.cmake.in |2 ++
 2 files changed, 2 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-55-gcc5bbed

2011-02-22 Thread Brad King
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, master has been updated
   via  cc5bbed52a73e8381ae682c171f6b314f8f9f6d5 (commit)
   via  fbca267331b1d85f92ea27dfcb9490369c56cf77 (commit)
   via  98b448ee9e1fc12181667c5f7431163097466daf (commit)
  from  15ff343d23c7c424bc56fd1f156869d8d00e3c34 (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=cc5bbed52a73e8381ae682c171f6b314f8f9f6d5
commit cc5bbed52a73e8381ae682c171f6b314f8f9f6d5
Merge: 15ff343 fbca267
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:55 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:55 2011 -0500

Merge topic 'fix-10704-manifest-no-vs10'

fbca267 VS: Only use /MANIFEST if hasManifest is true (#11216)
98b448e VS2010: Fixed GenerateManifest flag (#10704)


---

Summary of changes:
 Source/cmIDEOptions.cxx|6 ++
 Source/cmIDEOptions.h  |1 +
 Source/cmVisualStudio10TargetGenerator.cxx |   14 +-
 Source/cmake.cxx   |5 -
 4 files changed, 24 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-52-g15ff343

2011-02-22 Thread Brad King
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, master has been updated
   via  15ff343d23c7c424bc56fd1f156869d8d00e3c34 (commit)
   via  816c9d1aa1f2b42d40c81a991b68c96eb12b6d26 (commit)
  from  11f55fff8fc8946535afdd43d16ffe9384c5e1c8 (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=15ff343d23c7c424bc56fd1f156869d8d00e3c34
commit 15ff343d23c7c424bc56fd1f156869d8d00e3c34
Merge: 11f55ff 816c9d1
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:50 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:50 2011 -0500

Merge topic 'fix-4564-make-test-alias'

816c9d1 CTest: Add alias for make test target (#4564)


---

Summary of changes:
 Modules/CTestTargets.cmake |8 
 1 files changed, 8 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-50-g11f55ff

2011-02-22 Thread Brad King
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, master has been updated
   via  11f55fff8fc8946535afdd43d16ffe9384c5e1c8 (commit)
   via  d421a433a89064926ae6aad532850b8bed113562 (commit)
  from  6e450ed7f05e98216bc4ddd9f2c82149603de964 (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=11f55fff8fc8946535afdd43d16ffe9384c5e1c8
commit 11f55fff8fc8946535afdd43d16ffe9384c5e1c8
Merge: 6e450ed d421a43
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:45 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:45 2011 -0500

Merge topic 'fix-10723-non-dev-xcode'

d421a43 Strip trailing space from xcode-select output (#10723)


---

Summary of changes:
 Modules/Platform/Darwin.cmake |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-48-g6e450ed

2011-02-22 Thread Brad King
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, master has been updated
   via  6e450ed7f05e98216bc4ddd9f2c82149603de964 (commit)
   via  93f230e408cba124dc5ba97b1ef7f228ccb4fcc9 (commit)
  from  a38c1b3584e3009d525caa656798ab8b1dd5e9f8 (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=6e450ed7f05e98216bc4ddd9f2c82149603de964
commit 6e450ed7f05e98216bc4ddd9f2c82149603de964
Merge: a38c1b3 93f230e
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:40 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:40 2011 -0500

Merge topic 'mpif77-workaround-o-c-order'

93f230e Pass -o after -c for Fortran to avoid mpif77 ordering bug

diff --cc Modules/CMakeFortranInformation.cmake
index 4f033e3,80f5e46..dc15e55
--- a/Modules/CMakeFortranInformation.cmake
+++ b/Modules/CMakeFortranInformation.cmake
@@@ -167,20 -163,15 +167,21 @@@ ENDIF(NOT CMAKE_Fortran_CREATE_SHARED_M
  
  # Create a static archive incrementally for large object file counts.
  # If CMAKE_Fortran_CREATE_STATIC_LIBRARY is set it will override these.
 -SET(CMAKE_Fortran_ARCHIVE_CREATE " cr   
")
 -SET(CMAKE_Fortran_ARCHIVE_APPEND " r
")
 -SET(CMAKE_Fortran_ARCHIVE_FINISH " ")
 +IF(NOT DEFINED CMAKE_Fortran_ARCHIVE_CREATE)
 +  SET(CMAKE_Fortran_ARCHIVE_CREATE " cr   
")
 +ENDIF()
 +IF(NOT DEFINED CMAKE_Fortran_ARCHIVE_APPEND)
 +  SET(CMAKE_Fortran_ARCHIVE_APPEND " r
")
 +ENDIF()
 +IF(NOT DEFINED CMAKE_Fortran_ARCHIVE_FINISH)
 +  SET(CMAKE_Fortran_ARCHIVE_FINISH " ")
 +ENDIF()
  
  # compile a Fortran file into an object file
+ # (put -o after -c to workaround bug in at least one mpif77 wrapper)
  IF(NOT CMAKE_Fortran_COMPILE_OBJECT)
SET(CMAKE_Fortran_COMPILE_OBJECT
- " -o-c ")
+ "   -c  -o ")
  ENDIF(NOT CMAKE_Fortran_COMPILE_OBJECT)
  
  # link a fortran program

---

Summary of changes:
 Modules/CMakeFortranInformation.cmake |3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-46-ga38c1b3

2011-02-22 Thread Brad King
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, master has been updated
   via  a38c1b3584e3009d525caa656798ab8b1dd5e9f8 (commit)
   via  b1f52b1fd8dd13d22138b7b9c0701e699dbeb43c (commit)
  from  554641f320dfaed924a8a0edd89d7a69cc3943f2 (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=a38c1b3584e3009d525caa656798ab8b1dd5e9f8
commit a38c1b3584e3009d525caa656798ab8b1dd5e9f8
Merge: 554641f b1f52b1
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:31 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:31 2011 -0500

Merge topic 'qtdialog-groupingbug'

b1f52b1 Fix grouping bug where "Ungrouped Entries" showed up as a child.


---

Summary of changes:
 Source/QtDialog/QCMakeCacheView.cxx |   14 ++
 Source/QtDialog/QCMakeCacheView.h   |4 +++-
 2 files changed, 13 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-44-g554641f

2011-02-22 Thread Brad King
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, master has been updated
   via  554641f320dfaed924a8a0edd89d7a69cc3943f2 (commit)
   via  e6221ed2c41de86020083c4d2af58c7b28d36bb0 (commit)
  from  e0d0e879cf8d381ad1dfce6152aa4ab0459c5369 (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=554641f320dfaed924a8a0edd89d7a69cc3943f2
commit 554641f320dfaed924a8a0edd89d7a69cc3943f2
Merge: e0d0e87 e6221ed
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:26 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:26 2011 -0500

Merge topic 'fix-8914-allow-config-types-override'

e6221ed Xcode: Allow override of CMAKE_CONFIGURATION_TYPES (#8914)


---

Summary of changes:
 Source/cmGlobalXCodeGenerator.cxx |   17 ++---
 1 files changed, 10 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-42-ge0d0e87

2011-02-22 Thread Brad King
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, master has been updated
   via  e0d0e879cf8d381ad1dfce6152aa4ab0459c5369 (commit)
   via  b5e369229900c121ab997b67d185026057f4a199 (commit)
  from  542f45f4521ed4702c948a8750e2789b07017d48 (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=e0d0e879cf8d381ad1dfce6152aa4ab0459c5369
commit e0d0e879cf8d381ad1dfce6152aa4ab0459c5369
Merge: 542f45f b5e3692
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:21 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:21 2011 -0500

Merge topic 'fix-10150-mark-timeout-advanced'

b5e3692 CTest: Mark DART_TESTING_TIMEOUT as advanced (#10150)


---

Summary of changes:
 Modules/CTest.cmake |   21 +++--
 1 files changed, 11 insertions(+), 10 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-40-g542f45f

2011-02-22 Thread Brad King
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, master has been updated
   via  542f45f4521ed4702c948a8750e2789b07017d48 (commit)
   via  88548a45fbd35205469ac9fd332349551e172496 (commit)
   via  7befc00783ca9739e7585ff4d2b645a762a38396 (commit)
  from  45efcc8fa6eff6447402c9314953404d85d2a2c8 (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=542f45f4521ed4702c948a8750e2789b07017d48
commit 542f45f4521ed4702c948a8750e2789b07017d48
Merge: 45efcc8 88548a4
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:12 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:12 2011 -0500

Merge topic 'custom-command-slashes'

88548a4 Handle relative WORKING_DIRECTORY in add_custom_(command|target)
7befc00 Handle trailing slashes on add_custom_command DEPENDS


---

Summary of changes:
 Source/cmAddCustomCommandCommand.cxx   |7 ++
 Source/cmAddCustomCommandCommand.h |2 +
 Source/cmAddCustomTargetCommand.cxx|8 +++
 Source/cmAddCustomTargetCommand.h  |2 +
 Source/cmLocalGenerator.cxx|1 +
 Tests/CustomCommandWorkingDirectory/CMakeLists.txt |   21 ++-
 6 files changed, 39 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-37-g45efcc8

2011-02-22 Thread Brad King
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, master has been updated
   via  45efcc8fa6eff6447402c9314953404d85d2a2c8 (commit)
   via  8704525f201452929a2bec96fb04387c97ad8a79 (commit)
  from  64d997a78c1f2a24a8fd1978856a2b5f4a97a0f9 (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=45efcc8fa6eff6447402c9314953404d85d2a2c8
commit 45efcc8fa6eff6447402c9314953404d85d2a2c8
Merge: 64d997a 8704525
Author: Brad King 
AuthorDate: Tue Feb 22 14:31:07 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:31:07 2011 -0500

Merge topic 'disallow-funny-path-names'

8704525 Reject directory names containing '=' (#11689)


---

Summary of changes:
 Source/cmake.cxx |   24 
 Source/cmake.h   |2 ++
 2 files changed, 26 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-35-g64d997a

2011-02-22 Thread Brad King
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, master has been updated
   via  64d997a78c1f2a24a8fd1978856a2b5f4a97a0f9 (commit)
   via  cabc407912bb3bc0bb954e317a999cb2ee64de57 (commit)
   via  5457b8254cb43e002fe90b7c81ae65134ec12b24 (commit)
  from  6ec1ae2108afb8d9a72783fe945ad2410f08b4c1 (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=64d997a78c1f2a24a8fd1978856a2b5f4a97a0f9
commit 64d997a78c1f2a24a8fd1978856a2b5f4a97a0f9
Merge: 6ec1ae2 cabc407
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:58 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:58 2011 -0500

Merge topic 'fix-11295-support-plugin-bundles-on-mac'

cabc407 CFBundle Test: Add PATHS for finding Rez (#11295)
5457b82 Add support for CFBundle targets on the Mac (#11295)


---

Summary of changes:
 Source/cmExportFileGenerator.cxx|6 +++
 Source/cmExportInstallFileGenerator.cxx |   14 +++
 Source/cmGlobalXCodeGenerator.cxx   |   55 +++---
 Source/cmMakefileLibraryTargetGenerator.cxx |   49 +++
 Source/cmMakefileLibraryTargetGenerator.h   |1 +
 Source/cmSourceFile.cxx |6 ++-
 Source/cmTarget.cxx |   24 +++
 Source/cmTarget.h   |3 +
 Tests/CFBundleTest/CMakeLists.txt   |   56 +++
 Tests/CFBundleTest/ExportList_plugin.txt|3 +
 Tests/CFBundleTest/Info.plist.in|   54 ++
 Tests/CFBundleTest/InfoPlist.strings.in |4 ++
 Tests/CFBundleTest/Localized.r  |   18 +
 Tests/CFBundleTest/Localized.rsrc   |  Bin 0 -> 496 bytes
 Tests/CFBundleTest/PluginConfig.cmake   |   21 ++
 Tests/CFBundleTest/README.txt   |   16 
 Tests/CFBundleTest/VerifyResult.cmake   |   32 +++
 Tests/CFBundleTest/np_macmain.cpp   |   49 +++
 Tests/CMakeLists.txt|   15 +++
 19 files changed, 418 insertions(+), 8 deletions(-)
 create mode 100644 Tests/CFBundleTest/CMakeLists.txt
 create mode 100644 Tests/CFBundleTest/ExportList_plugin.txt
 create mode 100644 Tests/CFBundleTest/Info.plist.in
 create mode 100644 Tests/CFBundleTest/InfoPlist.strings.in
 create mode 100644 Tests/CFBundleTest/Localized.r
 create mode 100644 Tests/CFBundleTest/Localized.rsrc
 create mode 100644 Tests/CFBundleTest/PluginConfig.cmake
 create mode 100644 Tests/CFBundleTest/README.txt
 create mode 100644 Tests/CFBundleTest/VerifyResult.cmake
 create mode 100644 Tests/CFBundleTest/np_macmain.cpp


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-32-g6ec1ae2

2011-02-22 Thread Brad King
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, master has been updated
   via  6ec1ae2108afb8d9a72783fe945ad2410f08b4c1 (commit)
   via  85163fba18cbf9149f3107c1ec35ac489d1ce641 (commit)
  from  c033ba676938859c372bf31f057bc9a478d10d02 (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=6ec1ae2108afb8d9a72783fe945ad2410f08b4c1
commit 6ec1ae2108afb8d9a72783fe945ad2410f08b4c1
Merge: c033ba6 85163fb
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:52 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:52 2011 -0500

Merge topic 'vs-link-flag-table'

85163fb Add link flag table entries for VS 7,8,9


---

Summary of changes:
 Source/cmLocalVisualStudio7Generator.cxx |   18 ++
 1 files changed, 18 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-30-gc033ba6

2011-02-22 Thread Brad King
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, master has been updated
   via  c033ba676938859c372bf31f057bc9a478d10d02 (commit)
   via  e9425d405373947662957a847a6827a4cd46670d (commit)
   via  ea9de57750775dd80e83f6b6d5bd930a221b6f32 (commit)
  from  52e2c22ee9ca0053f538c0982d0a854c28a4547c (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=c033ba676938859c372bf31f057bc9a478d10d02
commit c033ba676938859c372bf31f057bc9a478d10d02
Merge: 52e2c22 e9425d4
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:48 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:48 2011 -0500

Merge topic 'fix-10397-add-wchar_t-string-pool-flags'

e9425d4 VS7/8/9: Add flag map for string pooling option (#10397)
ea9de57 VS8/9: Add flag map entries for /Zc:wchar_t (#10397)


---

Summary of changes:
 Source/cmGlobalVisualStudio8Generator.cxx |   10 --
 Source/cmLocalVisualStudio7Generator.cxx  |1 +
 2 files changed, 9 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-27-g52e2c22

2011-02-22 Thread Brad King
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, master has been updated
   via  52e2c22ee9ca0053f538c0982d0a854c28a4547c (commit)
   via  15e422249eab4d920ffeb3de08057d35f3bc6387 (commit)
  from  f866b208800c398e7bdf50c2d1a05b2b2f462c2d (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=52e2c22ee9ca0053f538c0982d0a854c28a4547c
commit 52e2c22ee9ca0053f538c0982d0a854c28a4547c
Merge: f866b20 15e4222
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:44 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:44 2011 -0500

Merge topic 'fix-10638-add-enable-prefast-flags'

15e4222 VS9: Map enable/disable PREfast flags (#10638)


---

Summary of changes:
 Source/cmGlobalVisualStudio8Generator.cxx |3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-25-gf866b20

2011-02-22 Thread Brad King
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, master has been updated
   via  f866b208800c398e7bdf50c2d1a05b2b2f462c2d (commit)
   via  6cf5772a934f8408dbf0615a0a981239f461a28f (commit)
  from  fe07b5eae6e1216d576044b47802db084a4a6f7a (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=f866b208800c398e7bdf50c2d1a05b2b2f462c2d
commit f866b208800c398e7bdf50c2d1a05b2b2f462c2d
Merge: fe07b5e 6cf5772
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:39 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:39 2011 -0500

Merge topic 'fix-10263-add-whole-program-opt-flags'

6cf5772 VS7/8/9: Map whole program optimization flags (#10263)


---

Summary of changes:
 Source/cmLocalVisualStudio7Generator.cxx |4 
 1 files changed, 4 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-23-gfe07b5e

2011-02-22 Thread Brad King
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, master has been updated
   via  fe07b5eae6e1216d576044b47802db084a4a6f7a (commit)
   via  d503206fbea7aab6a4eaae08acf1ab53b0997df3 (commit)
  from  d0b32ca5cd729fe7a51a59794ba6c2e6931f674b (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=fe07b5eae6e1216d576044b47802db084a4a6f7a
commit fe07b5eae6e1216d576044b47802db084a4a6f7a
Merge: d0b32ca d503206
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:35 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:35 2011 -0500

Merge topic 'add-floating-point-flags'

d503206 Add FloatingPointModel to the list of known VS7 generator flags.


---

Summary of changes:
 Source/cmLocalVisualStudio7Generator.cxx |5 +
 1 files changed, 5 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-21-gd0b32ca

2011-02-22 Thread Brad King
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, master has been updated
   via  d0b32ca5cd729fe7a51a59794ba6c2e6931f674b (commit)
   via  acd8161bad5d2106f176cd464819df5fbedf2ec7 (commit)
  from  b346093a030887b4e7fd0c35c5b2535ad3093dba (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=d0b32ca5cd729fe7a51a59794ba6c2e6931f674b
commit d0b32ca5cd729fe7a51a59794ba6c2e6931f674b
Merge: b346093 acd8161
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:29 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:29 2011 -0500

Merge topic 'fix-clang-warnings'

acd8161 ccmake: Remove extra parens around comparison


---

Summary of changes:
 Source/CursesDialog/form/frm_driver.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-19-gb346093

2011-02-22 Thread Brad King
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, master has been updated
   via  b346093a030887b4e7fd0c35c5b2535ad3093dba (commit)
   via  2d14b15ec22a83ef78b0b9f1e5947f281e35d11a (commit)
  from  4d8fee46598d857410a3960aa2d352ebae45cdfc (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=b346093a030887b4e7fd0c35c5b2535ad3093dba
commit b346093a030887b4e7fd0c35c5b2535ad3093dba
Merge: 4d8fee4 2d14b15
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:25 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:25 2011 -0500

Merge topic 'fix-8154-improve-list-documentation'

2d14b15 Clarify list subcommand documentation (#8154)


---

Summary of changes:
 Source/cmListCommand.h |8 
 1 files changed, 8 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-17-g4d8fee4

2011-02-22 Thread Brad King
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, master has been updated
   via  4d8fee46598d857410a3960aa2d352ebae45cdfc (commit)
   via  1019d8272758ba615aface2291faca2bd53a5f0b (commit)
   via  2434d8826ee193f38090d97f73bdbf276bf7df10 (commit)
  from  377ed8e764468e926f611839588860da247413f7 (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=4d8fee46598d857410a3960aa2d352ebae45cdfc
commit 4d8fee46598d857410a3960aa2d352ebae45cdfc
Merge: 377ed8e 1019d82
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:20 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:20 2011 -0500

Merge topic 'fix-10446-improve-dash-E-docs'

1019d82 Documentation: Sync two differing copies of -E docs (#10446)
2434d88 Documentation: document platform specific -E commands (#10446)


---

Summary of changes:
 Source/cmake.cxx |   20 +++-
 Source/cmakemain.cxx |   12 +++-
 2 files changed, 18 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-14-g377ed8e

2011-02-22 Thread Brad King
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, master has been updated
   via  377ed8e764468e926f611839588860da247413f7 (commit)
   via  0037dcb6af2e9c9172d4fe642fb9e0b718580053 (commit)
  from  37e4b034d4df278e10bafe3ffa2dafee1aa100aa (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=377ed8e764468e926f611839588860da247413f7
commit 377ed8e764468e926f611839588860da247413f7
Merge: 37e4b03 0037dcb
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:12 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:12 2011 -0500

Merge topic 'fix-11526-mac-remove-carbon-refs'

0037dcb Removed most usage of Carbon in favour of CoreFoundation


---

Summary of changes:
 Source/CMakeLists.txt  |4 ++--
 Source/CPack/OSXScriptLauncher.cxx |1 -
 Tests/BundleTest/BundleLib.cxx |4 ++--
 Tests/BundleTest/BundleTest.cxx|6 +++---
 Tests/BundleTest/CMakeLists.txt|   12 ++--
 bootstrap  |4 ++--
 6 files changed, 15 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-12-g37e4b03

2011-02-22 Thread Brad King
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, master has been updated
   via  37e4b034d4df278e10bafe3ffa2dafee1aa100aa (commit)
   via  a6a21c85ed759d3c1cfeb0db63007dd5d78c24e0 (commit)
  from  70bd240e6ce6f155e70a1443a42202ba343c1def (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=37e4b034d4df278e10bafe3ffa2dafee1aa100aa
commit 37e4b034d4df278e10bafe3ffa2dafee1aa100aa
Merge: 70bd240 a6a21c8
Author: Brad King 
AuthorDate: Tue Feb 22 14:30:05 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:30:05 2011 -0500

Merge topic 'eliminate-unnecessary-test-isms'

a6a21c8 Tests: Eliminate unnecessary files and variables.


---

Summary of changes:
 Tests/CTestTest3/test.cmake.in  |  120 ---
 Tests/CTestTestBadExe/test.cmake.in |3 -
 Tests/CTestTestChecksum/test.cmake.in   |3 -
 Tests/CTestTestCostSerial/test.cmake.in |3 -
 Tests/CTestTestCrash/test.cmake.in  |3 -
 Tests/CTestTestCycle/test.cmake.in  |3 -
 Tests/CTestTestDepends/test.cmake.in|3 -
 Tests/CTestTestFailedSubmits/test.cmake.in  |4 -
 Tests/CTestTestFailure/testNoBuild.cmake.in |3 -
 Tests/CTestTestFailure/testNoExe.cmake.in   |3 -
 Tests/CTestTestParallel/test.cmake.in   |3 -
 Tests/CTestTestResourceLock/test.cmake.in   |3 -
 Tests/CTestTestScheduler/test.cmake.in  |3 -
 Tests/CTestTestStopTime/test.cmake.in   |3 -
 Tests/CTestTestSubdir/test.cmake.in |3 -
 Tests/CTestTestTimeout/test.cmake.in|3 -
 Tests/CTestTestZeroTimeout/test.cmake.in|3 -
 17 files changed, 0 insertions(+), 169 deletions(-)
 delete mode 100644 Tests/CTestTest3/test.cmake.in


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, master, updated. v2.8.4-10-g70bd240

2011-02-22 Thread Brad King
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, master has been updated
   via  70bd240e6ce6f155e70a1443a42202ba343c1def (commit)
   via  42b26ee5db46d8f8ee5b79e234fd212d61e5b3a3 (commit)
  from  73bbef36d03cce70c7a3c29845d545afc67d81b8 (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=70bd240e6ce6f155e70a1443a42202ba343c1def
commit 70bd240e6ce6f155e70a1443a42202ba343c1def
Merge: 73bbef3 42b26ee
Author: Brad King 
AuthorDate: Tue Feb 22 14:29:49 2011 -0500
Commit: CMake Topic Stage 
CommitDate: Tue Feb 22 14:29:49 2011 -0500

Merge topic 'increase-ep-test-timeout'

42b26ee ExternalProject Test: Increase test timeout value


---

Summary of changes:
 Tests/CMakeLists.txt |7 ++-
 1 files changed, 2 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits


[Cmake-commits] CMake branch, next, updated. v2.8.4-942-g5da4d41

2011-02-22 Thread Brad King
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  5da4d417908032185d105c7c67983f5c0df3045f (commit)
   via  73bbef36d03cce70c7a3c29845d545afc67d81b8 (commit)
  from  64919dd12d9e1ace9d6da059e3b9d92c891770c7 (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=5da4d417908032185d105c7c67983f5c0df3045f
commit 5da4d417908032185d105c7c67983f5c0df3045f
Merge: 64919dd 73bbef3
Author: Brad King 
AuthorDate: Tue Feb 22 14:02:41 2011 -0500
Commit: Brad King 
CommitDate: Tue Feb 22 14:02:41 2011 -0500

Merge branch 'master' into next


---

Summary of changes:
 Source/kwsys/kwsysDateStamp.cmake |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
___
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits