[Cmake-commits] CMake branch, next, updated. v3.5.2-1201-g5a4303c

2016-05-02 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  5a4303c1626877df3b27c8ad89092514c58daf62 (commit)
   via  aae59a096b50804036072bea80064527a13b6d74 (commit)
   via  180102b939ce5cbc6cce48ab6a77c1ace2d022ab (commit)
   via  3cfc5da8efa056fe03dfeb503799584942db6910 (commit)
   via  25a2743f3e4bd50f6093aafff14dd33f729424e4 (commit)
  from  927de11d56b395c9d70f8d8ebed012cba07dcd94 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5a4303c1626877df3b27c8ad89092514c58daf62
commit 5a4303c1626877df3b27c8ad89092514c58daf62
Merge: 927de11 aae59a0
Author: Brad King 
AuthorDate: Mon May 2 15:49:54 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Mon May 2 15:49:54 2016 -0400

Merge topic 'clang-format-include-order' into next

aae59a09 Source: Sort includes the way clang-format would
180102b9 Source: Sort includes of sys/types.h as clang-format would
3cfc5da8 Source: Stabilize include order of sys/types.h before sys/stat.h
25a2743f Tests: Sort includes of sys/types.h as clang-format would


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=aae59a096b50804036072bea80064527a13b6d74
commit aae59a096b50804036072bea80064527a13b6d74
Author: Brad King 
AuthorDate: Mon May 2 15:42:32 2016 -0400
Commit: Brad King 
CommitDate: Mon May 2 15:47:14 2016 -0400

Source: Sort includes the way clang-format would

Re-apply the approach from commit e1c77472 (Format include directive
blocks and ordering with clang-format, 2016-04-29) but this time be
more careful about exclusion of parser generator sources:

$ git ls-files -z -- \
'*.c' '*.cc' '*.cpp' '*.cxx' '*.h' '*.hh' '*.hpp' '*.hxx' |
  egrep -z -v '^Source/cmCommandArgumentLexer\.' |
  egrep -z -v '^Source/cmCommandArgumentParser\.' |
  egrep -z -v '^Source/cmDependsJavaLexer\.' |
  egrep -z -v '^Source/cmDependsJavaParser\.' |
  egrep -z -v '^Source/cmExprLexer\.' |
  egrep -z -v '^Source/cmExprParser\.' |
  egrep -z -v '^Source/cmFortranLexer\.' |
  egrep -z -v '^Source/cmFortranParser\.' |
  egrep -z -v '^Source/cmListFileLexer\.' |
  egrep -z -v '^Source/cm_sha2' |
  egrep -z -v '^Source/(kwsys|CursesDialog/form)/' |
  egrep -z -v '^Utilities/(KW|cm).*/' |
  egrep -z -v '^Tests/Module/GenerateExportHeader' |
  egrep -z -v 
'^Tests/RunCMake/CommandLine/cmake_depends/test_UTF-16LE.h' |
  xargs -0 clang-format -i

Also drop use of custom sorting for `sys/types.h`.

diff --git a/Source/CPack/WiX/cmWIXPatchParser.h 
b/Source/CPack/WiX/cmWIXPatchParser.h
index 42c0787..8ce4026 100644
--- a/Source/CPack/WiX/cmWIXPatchParser.h
+++ b/Source/CPack/WiX/cmWIXPatchParser.h
@@ -17,8 +17,8 @@
 
 #include 
 
-#include 
 #include 
+#include 
 
 struct cmWIXPatchNode
 {
diff --git a/Source/cmCommandArgumentParserHelper.cxx 
b/Source/cmCommandArgumentParserHelper.cxx
index 15ab746..0b2fd81 100644
--- a/Source/cmCommandArgumentParserHelper.cxx
+++ b/Source/cmCommandArgumentParserHelper.cxx
@@ -11,10 +11,10 @@
 */
 #include "cmCommandArgumentParserHelper.h"
 
-#include "cmSystemTools.h"
 #include "cmMakefile.h"
-#include "cmState.h"
 #include "cmOutputConverter.h"
+#include "cmState.h"
+#include "cmSystemTools.h"
 
 #include "cmCommandArgumentLexer.h"
 
diff --git a/Source/cmDependsJavaParserHelper.cxx 
b/Source/cmDependsJavaParserHelper.cxx
index 3c02325..51a1cb4 100644
--- a/Source/cmDependsJavaParserHelper.cxx
+++ b/Source/cmDependsJavaParserHelper.cxx
@@ -11,8 +11,8 @@
 */
 #include "cmDependsJavaParserHelper.h"
 
-#include "cmSystemTools.h"
 #include "cmDependsJavaLexer.h"
+#include "cmSystemTools.h"
 #include 
 
 int cmDependsJava_yyparse( yyscan_t yyscanner );
diff --git a/Source/cmExprParserHelper.cxx b/Source/cmExprParserHelper.cxx
index 6016c4c..c5ecde4 100644
--- a/Source/cmExprParserHelper.cxx
+++ b/Source/cmExprParserHelper.cxx
@@ -11,8 +11,8 @@
 */
 #include "cmExprParserHelper.h"
 
-#include "cmSystemTools.h"
 #include "cmMakefile.h"
+#include "cmSystemTools.h"
 
 #include "cmExprLexer.h"
 

https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=180102b939ce5cbc6cce48ab6a77c1ace2d022ab
commit 180102b939ce5cbc6cce48ab6a77c1ace2d022ab
Author: 

[Cmake-commits] CMake branch, next, updated. v3.5.2-1191-gee6e6f5

2016-05-02 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  ee6e6f51d312e0fffed749552eb73be654a061d9 (commit)
   via  ace026a0b8f1c051827f3ad848bc62426ba06b91 (commit)
  from  db28625d0c9467c47de38e41e60baca7724f8b85 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ee6e6f51d312e0fffed749552eb73be654a061d9
commit ee6e6f51d312e0fffed749552eb73be654a061d9
Merge: db28625 ace026a
Author: Brad King 
AuthorDate: Mon May 2 15:15:47 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Mon May 2 15:15:47 2016 -0400

Merge topic 'doc-cmake-policies-manual-improvements' into next

ace026a0 fixup! CMP0059: Fix typo in policy description


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ace026a0b8f1c051827f3ad848bc62426ba06b91
commit ace026a0b8f1c051827f3ad848bc62426ba06b91
Author: Brad King 
AuthorDate: Mon May 2 15:15:35 2016 -0400
Commit: Brad King 
CommitDate: Mon May 2 15:15:35 2016 -0400

fixup! CMP0059: Fix typo in policy description

diff --git a/Tests/RunCMake/CMP0059/CMP0059-WARN-stderr.txt 
b/Tests/RunCMake/CMP0059/CMP0059-WARN-stderr.txt
index 4e04d15..06c7be3 100644
--- a/Tests/RunCMake/CMP0059/CMP0059-WARN-stderr.txt
+++ b/Tests/RunCMake/CMP0059/CMP0059-WARN-stderr.txt
@@ -1,5 +1,5 @@
 CMake Warning \(dev\) at CMP0059-WARN.cmake:6 \(get_property\):
-  Policy CMP0059 is not set: Do no treat DEFINITIONS as a built-in directory
+  Policy CMP0059 is not set: Do not treat DEFINITIONS as a built-in directory
   property.  Run "cmake --help-policy CMP0059" for policy details.  Use the
   cmake_policy command to set the policy and suppress this warning.
 Call Stack \(most recent call first\):
@@ -8,7 +8,7 @@ This warning is for project developers.  Use -Wno-dev to 
suppress it.
 
 DEFS: -DSOME_DEF
 CMake Warning \(dev\) at CMP0059-WARN.cmake:14 \(get_property\):
-  Policy CMP0059 is not set: Do no treat DEFINITIONS as a built-in directory
+  Policy CMP0059 is not set: Do not treat DEFINITIONS as a built-in directory
   property.  Run "cmake --help-policy CMP0059" for policy details.  Use the
   cmake_policy command to set the policy and suppress this warning.
 Call Stack \(most recent call first\):

---

Summary of changes:
 Tests/RunCMake/CMP0059/CMP0059-WARN-stderr.txt |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


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


[Cmake-commits] CMake branch, next, updated. v3.5.2-1184-gdb3f24a

2016-05-02 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  db3f24a97b988bebe75210d8ca53a7cef19ff134 (commit)
   via  6a9056781ae761e6efa07b033271ccdf818472c8 (commit)
  from  f80f30d3a1d3cdb669fe6405e2971ae038af1829 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=db3f24a97b988bebe75210d8ca53a7cef19ff134
commit db3f24a97b988bebe75210d8ca53a7cef19ff134
Merge: f80f30d 6a90567
Author: Brad King 
AuthorDate: Mon May 2 13:27:50 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Mon May 2 13:27:50 2016 -0400

Merge topic 'ExternalProject-git-recursive-init' into next

6a905678 ExternalProject: Initialize Git submodules recursively and on 
update (#16083)


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6a9056781ae761e6efa07b033271ccdf818472c8
commit 6a9056781ae761e6efa07b033271ccdf818472c8
Author: Ilya Kulakov 
AuthorDate: Tue Apr 26 18:50:38 2016 -0400
Commit: Brad King 
CommitDate: Mon May 2 13:26:38 2016 -0400

ExternalProject: Initialize Git submodules recursively and on update 
(#16083)

diff --git a/Help/release/dev/ExternalProject-git-recursive-init.rst 
b/Help/release/dev/ExternalProject-git-recursive-init.rst
new file mode 100644
index 000..10278d8
--- /dev/null
+++ b/Help/release/dev/ExternalProject-git-recursive-init.rst
@@ -0,0 +1,7 @@
+ExternalProject-git-recursive-init
+--
+
+* The :command:`ctest_update` command learned to initialize submodules
+  recursively and also to initialize new submodules on updates.  Use
+  the ``GIT_SUBMODULES`` option to restrict which submodules are
+  initalized and updated.
diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake
index 9cc8a20..7dad6e5 100644
--- a/Modules/ExternalProject.cmake
+++ b/Modules/ExternalProject.cmake
@@ -587,7 +587,7 @@ if(error_code)
 endif()
 
 execute_process(
-  COMMAND \"${git_EXECUTABLE}\" \${git_options} submodule update --recursive 
${git_submodules}
+  COMMAND \"${git_EXECUTABLE}\" \${git_options} submodule update --recursive 
--init ${git_submodules}
   WORKING_DIRECTORY \"${work_dir}/${src_name}\"
   RESULT_VARIABLE error_code
   )
@@ -833,7 +833,7 @@ if(error_code OR is_remote_ref OR NOT (\"\${tag_sha}\" 
STREQUAL \"\${head_sha}\"
   endif()
 
   execute_process(
-COMMAND \"${git_EXECUTABLE}\" submodule update --recursive 
${git_submodules}
+COMMAND \"${git_EXECUTABLE}\" submodule update --recursive --init 
${git_submodules}
 WORKING_DIRECTORY \"${work_dir}/${src_name}\"
 RESULT_VARIABLE error_code
 )

---

Summary of changes:
 Help/release/dev/ExternalProject-git-recursive-init.rst |7 +++
 Modules/ExternalProject.cmake   |4 ++--
 2 files changed, 9 insertions(+), 2 deletions(-)
 create mode 100644 Help/release/dev/ExternalProject-git-recursive-init.rst


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


[Cmake-commits] CMake branch, next, updated. v3.5.2-1178-g67ad27c

2016-05-02 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  67ad27c3129bfd55d2ed78ad8dfa5aaea20da040 (commit)
   via  960afaad7f1bc02b93a786fad6169ce970b5d5e7 (commit)
   via  25ee2c86c1d231ee0f930e6cfe1bb5be5e4ee539 (commit)
  from  ebbb1d2809ca06b339fc5b941abe404b3adf245e (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=67ad27c3129bfd55d2ed78ad8dfa5aaea20da040
commit 67ad27c3129bfd55d2ed78ad8dfa5aaea20da040
Merge: ebbb1d2 960afaa
Author: Brad King 
AuthorDate: Mon May 2 10:02:58 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Mon May 2 10:02:58 2016 -0400

Merge topic 'doc-cmake-E-updates' into next

960afaad Help: Improve 'cmake -E md5sum' documentation
25ee2c86 Help: Add missing space in cmake(1) manual


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=960afaad7f1bc02b93a786fad6169ce970b5d5e7
commit 960afaad7f1bc02b93a786fad6169ce970b5d5e7
Author: Bartosz Kosiorek 
AuthorDate: Mon May 2 12:27:57 2016 +0200
Commit: Brad King 
CommitDate: Mon May 2 10:02:12 2016 -0400

Help: Improve 'cmake -E md5sum' documentation

diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst
index 0b060bc..3ae2baf 100644
--- a/Help/manual/cmake.1.rst
+++ b/Help/manual/cmake.1.rst
@@ -204,7 +204,10 @@ Available commands are:
   silently ignored.
 
 ``md5sum ...``
-  Compute md5sum of files.
+  Create MD5 checksum of files in ``md5sum`` compatible format::
+
+ 351abe79cd3800b38cdfb25d45015a15  file1.txt
+ 052f86c15bbde68af55c7f7b340ab639  file2.txt
 
 ``remove [-f] ...``
   Remove the file(s), use ``-f`` to force it.  If a file does
diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx
index 22c6a06..01b12a3 100644
--- a/Source/cmcmd.cxx
+++ b/Source/cmcmd.cxx
@@ -70,7 +70,7 @@ void CMakeCommandUsage(const char* program)
 << "- run command in a modified environment\n"
 << "  environment   - display the current environment\n"
 << "  make_directory ...   - create parent and  directories\n"
-<< "  md5sum ...  - compute md5sum of files\n"
+<< "  md5sum ...  - create MD5 checksum of files\n"
 << "  remove [-f] ... - remove the file(s), use -f to force "
"it\n"
 << "  remove_directory dir  - remove a directory and its contents\n"

https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=25ee2c86c1d231ee0f930e6cfe1bb5be5e4ee539
commit 25ee2c86c1d231ee0f930e6cfe1bb5be5e4ee539
Author: Bartosz Kosiorek 
AuthorDate: Mon May 2 12:27:57 2016 +0200
Commit: Brad King 
CommitDate: Mon May 2 09:51:29 2016 -0400

Help: Add missing space in cmake(1) manual

diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst
index 5295a48c..0b060bc 100644
--- a/Help/manual/cmake.1.rst
+++ b/Help/manual/cmake.1.rst
@@ -169,7 +169,7 @@ Available commands are:
 
 ``compare_files  ``
   Check if  is same as . If files are the same,
-  then returns 0, if not itreturns 1.
+  then returns 0, if not it returns 1.
 
 ``copy ... ``
   Copy files to  (either file or directory).

---

Summary of changes:
 Help/manual/cmake.1.rst |7 +--
 Source/cmcmd.cxx|2 +-
 2 files changed, 6 insertions(+), 3 deletions(-)


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


[Cmake-commits] CMake branch, next, updated. v3.5.2-1175-gebbb1d2

2016-05-02 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  ebbb1d2809ca06b339fc5b941abe404b3adf245e (commit)
   via  24b2a36778fd65f7066a964cf9f5d249f8e0f101 (commit)
   via  067b21b675bde6ccbb3009fbaaba5efaa78dbea0 (commit)
   via  2e6684c65da317d0ffdb383bff895635c2947826 (commit)
   via  ffbac71e073bd96ec32aae0fd9a7232e56a0d1c4 (commit)
   via  c9423a44de6e8df8e7d9b0c2acb8268c7de3fbd7 (commit)
  from  716551b31898ac94b8d7328e79d969dbd6270053 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ebbb1d2809ca06b339fc5b941abe404b3adf245e
commit ebbb1d2809ca06b339fc5b941abe404b3adf245e
Merge: 716551b 24b2a36
Author: Brad King 
AuthorDate: Mon May 2 09:24:33 2016 -0400
Commit: Brad King 
CommitDate: Mon May 2 09:24:33 2016 -0400

Merge branch 'master' into next


---

Summary of changes:
 Source/CMakeVersion.cmake |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


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


[Cmake-commits] CMake branch, master, updated. v3.5.2-555-g24b2a36

2016-05-02 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  24b2a36778fd65f7066a964cf9f5d249f8e0f101 (commit)
   via  47c298851bb172af1c5afd208fa62524d763f91a (commit)
   via  26790ad93ba80f109c9033525c2ff5ac08d883bb (commit)
  from  067b21b675bde6ccbb3009fbaaba5efaa78dbea0 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=24b2a36778fd65f7066a964cf9f5d249f8e0f101
commit 24b2a36778fd65f7066a964cf9f5d249f8e0f101
Merge: 067b21b 47c2988
Author: Brad King 
AuthorDate: Mon May 2 09:24:23 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Mon May 2 09:24:23 2016 -0400

Merge topic 'test-watcom-workaround'

47c29885 Tests: Fix RunCMake.BuildDepends filesystem delay for Watcom WMake
26790ad9 Tests: Add workaround to Wrapping test for Watcom failure


---

Summary of changes:
 Tests/RunCMake/BuildDepends/RunCMakeTest.cmake |3 ++-
 Tests/Wrapping/CMakeLists.txt  |2 +-
 Tests/Wrapping/{wrapFLTK.c => wrapFLTK.cxx}|0
 3 files changed, 3 insertions(+), 2 deletions(-)
 rename Tests/Wrapping/{wrapFLTK.c => wrapFLTK.cxx} (100%)


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


[Cmake-commits] CMake branch, master, updated. v3.5.2-552-g067b21b

2016-05-02 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  067b21b675bde6ccbb3009fbaaba5efaa78dbea0 (commit)
   via  e1c7747253ac71a5215dd32a910b62a1fd8c561a (commit)
   via  180538c70634dd6dc7fc68b4afbc1cd288c5b5c6 (commit)
   via  0e7bca923e65df8fda37dd50ca68c7207eb3acbe (commit)
   via  eb817be034e0fd50b7abfc3ae032e2e06cbfd040 (commit)
   via  eda313b485a9252c176090a8c358127a2116551d (commit)
   via  7110b754fe8dc82c4e18c7de72e8eedcec4561da (commit)
   via  d7a5f25599552b0d4dc7af59fef8af1addc090f1 (commit)
  from  2e6684c65da317d0ffdb383bff895635c2947826 (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 -
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=067b21b675bde6ccbb3009fbaaba5efaa78dbea0
commit 067b21b675bde6ccbb3009fbaaba5efaa78dbea0
Merge: 2e6684c e1c7747
Author: Brad King 
AuthorDate: Mon May 2 09:24:21 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Mon May 2 09:24:21 2016 -0400

Merge topic 'clang-format-include-order'

e1c77472 Format include directive blocks and ordering with clang-format
180538c7 Source: Stabilize include order
0e7bca92 Utilities/Release: Stabilize include order in WiX custom action
eb817be0 Tests: Stabilize include order in MFC, VSXaml, and VSWinStorePhone
eda313b4 Tests: Stabilize include order in StringFileTest
7110b754 CursesDialog: add missing cmState include
d7a5f255 Modules: Remove unused CMakeTestWatcomVersion.c file


---

Summary of changes:
 Modules/CMakeTestWatcomVersion.c   |1 -
 Modules/CheckForPthreads.c |2 +-
 Source/CPack/IFW/cmCPackIFWGenerator.cxx   |   16 -
 Source/CPack/IFW/cmCPackIFWGenerator.h |2 +-
 Source/CPack/OSXScriptLauncher.cxx |4 +--
 Source/CPack/WiX/cmCPackWIXGenerator.cxx   |   12 +++
 Source/CPack/WiX/cmCPackWIXGenerator.h |6 ++--
 Source/CPack/WiX/cmWIXAccessControlList.h  |6 ++--
 Source/CPack/WiX/cmWIXFeaturesSourceWriter.h   |1 +
 Source/CPack/WiX/cmWIXFilesSourceWriter.cxx|1 +
 Source/CPack/WiX/cmWIXFilesSourceWriter.h  |3 +-
 Source/CPack/WiX/cmWIXPatch.h  |2 +-
 Source/CPack/WiX/cmWIXPatchParser.h|4 +--
 Source/CPack/WiX/cmWIXRichTextFormatWriter.h   |2 ++
 Source/CPack/WiX/cmWIXShortcut.h   |6 ++--
 Source/CPack/WiX/cmWIXSourceWriter.cxx |2 --
 Source/CPack/WiX/cmWIXSourceWriter.h   |7 ++--
 Source/CPack/cmCPackArchiveGenerator.cxx   |   12 +++
 Source/CPack/cmCPackArchiveGenerator.h |3 +-
 Source/CPack/cmCPackBundleGenerator.cxx|1 +
 Source/CPack/cmCPackComponentGroup.cxx |4 ++-
 Source/CPack/cmCPackCygwinBinaryGenerator.cxx  |8 ++---
 Source/CPack/cmCPackCygwinSourceGenerator.cxx  |   10 +++---
 Source/CPack/cmCPackDebGenerator.cxx   |   13 
 Source/CPack/cmCPackDebGenerator.h |1 -
 Source/CPack/cmCPackDragNDropGenerator.cxx |5 +--
 Source/CPack/cmCPackGenerator.cxx  |   14 
 Source/CPack/cmCPackGenerator.h|1 +
 Source/CPack/cmCPackGeneratorFactory.cxx   |   18 +-
 Source/CPack/cmCPackNSISGenerator.cxx  |   12 +++
 Source/CPack/cmCPackNSISGenerator.h|2 +-
 Source/CPack/cmCPackOSXX11Generator.cxx|   11 +++---
 Source/CPack/cmCPackPackageMakerGenerator.cxx  |   14 
 Source/CPack/cmCPackPackageMakerGenerator.h|1 -
 Source/CPack/cmCPackRPMGenerator.cxx   |1 +
 Source/CPack/cmCPackRPMGenerator.h |1 -
 Source/CPack/cmCPackSTGZGenerator.cxx  |8 ++---
 Source/CPack/cmCPackSTGZGenerator.h|1 -
 Source/CPack/cmCPackTarBZip2Generator.cxx  |1 +
 Source/CPack/cpack.cxx |   10 +++---
 Source/CTest/cmCTestBatchTestHandler.cxx   |3 +-
 Source/CTest/cmCTestBatchTestHandler.h |3 +-
 Source/CTest/cmCTestBuildAndTestHandler.cxx|6 ++--
 Source/CTest/cmCTestBuildCommand.cxx   |4 +--
 Source/CTest/cmCTestBuildHandler.cxx   |   16 -
 Source/CTest/cmCTestBuildHandler.h |2 +-
 Source/CTest/cmCTestCVS.cxx|2 +-
 Source/CTest/cmCTestConfigureCommand.cxx   |2 +-