[Cmake-commits] CMake branch, master, updated. v3.6.1-856-gfb357e5

2016-09-03 Thread Kitware 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  fb357e5fef2e7803f2f745b6aa4cf63935628ed6 (commit)
  from  bfdf1322e7638687c96b323b1df20fd9c08b3044 (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=fb357e5fef2e7803f2f745b6aa4cf63935628ed6
commit fb357e5fef2e7803f2f745b6aa4cf63935628ed6
Author: Kitware Robot 
AuthorDate: Sun Sep 4 00:01:05 2016 -0400
Commit: Kitware Robot 
CommitDate: Sun Sep 4 00:01:05 2016 -0400

CMake Nightly Date Stamp

diff --git a/Source/CMakeVersion.cmake b/Source/CMakeVersion.cmake
index 811f4f7..d611daa 100644
--- a/Source/CMakeVersion.cmake
+++ b/Source/CMakeVersion.cmake
@@ -1,5 +1,5 @@
 # CMake version number components.
 set(CMake_VERSION_MAJOR 3)
 set(CMake_VERSION_MINOR 6)
-set(CMake_VERSION_PATCH 20160903)
+set(CMake_VERSION_PATCH 20160904)
 #set(CMake_VERSION_RC 1)

---

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, next, updated. v3.6.1-1757-gdfa796f

2016-09-03 Thread Daniel Pfeifer
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  dfa796fc2815c89ed7a1fcc119b12bcf6afc8294 (commit)
   via  32f756c8226e2026d51307c4722aa6b98939c9e6 (commit)
  from  5871837d2774cf2f6bf50d284fb705c6210640b2 (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=dfa796fc2815c89ed7a1fcc119b12bcf6afc8294
commit dfa796fc2815c89ed7a1fcc119b12bcf6afc8294
Merge: 5871837 32f756c
Author: Daniel Pfeifer 
AuthorDate: Sat Sep 3 18:23:11 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 18:23:11 2016 -0400

Merge topic 'include-what-you-use' into next

32f756c8 CursesDialog: include what you use


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=32f756c8226e2026d51307c4722aa6b98939c9e6
commit 32f756c8226e2026d51307c4722aa6b98939c9e6
Author: Daniel Pfeifer 
AuthorDate: Thu Sep 1 21:55:09 2016 +0200
Commit: Daniel Pfeifer 
CommitDate: Sat Sep 3 23:37:09 2016 +0200

CursesDialog: include what you use

diff --git a/Source/CursesDialog/ccmake.cxx b/Source/CursesDialog/ccmake.cxx
index 80bb55d..2e062bc 100644
--- a/Source/CursesDialog/ccmake.cxx
+++ b/Source/CursesDialog/ccmake.cxx
@@ -9,19 +9,22 @@
   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
   See the License for more information.
 */
-#include "cmCursesStandardIncludes.h"
-
-#include "../cmDocumentation.h"
-#include "../cmSystemTools.h"
-#include "../cmake.h"
-
-#include 
-#include 
+#include 
 
+#include "cmCursesForm.h"
 #include "cmCursesMainForm.h"
-#include 
+#include "cmCursesStandardIncludes.h"
+#include "cmDocumentation.h"
+#include "cmDocumentationEntry.h"
+#include "cmSystemTools.h"
+#include "cmake.h"
 
-#include 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
 
 static const char* cmDocumentationName[][2] = {
   { CM_NULLPTR, "  ccmake - Curses Interface for CMake." },
diff --git a/Source/CursesDialog/cmCursesBoolWidget.cxx 
b/Source/CursesDialog/cmCursesBoolWidget.cxx
index 99f7dcc..de95bae 100644
--- a/Source/CursesDialog/cmCursesBoolWidget.cxx
+++ b/Source/CursesDialog/cmCursesBoolWidget.cxx
@@ -11,7 +11,10 @@
 */
 #include "cmCursesBoolWidget.h"
 
-#include "cmCursesMainForm.h"
+#include "cmCursesWidget.h"
+#include "cmState.h"
+
+#include 
 
 cmCursesBoolWidget::cmCursesBoolWidget(int width, int height, int left,
int top)
diff --git a/Source/CursesDialog/cmCursesBoolWidget.h 
b/Source/CursesDialog/cmCursesBoolWidget.h
index d2899ee..b9f1b16 100644
--- a/Source/CursesDialog/cmCursesBoolWidget.h
+++ b/Source/CursesDialog/cmCursesBoolWidget.h
@@ -12,6 +12,9 @@
 #ifndef cmCursesBoolWidget_h
 #define cmCursesBoolWidget_h
 
+#include 
+
+#include "cmCursesStandardIncludes.h"
 #include "cmCursesWidget.h"
 
 class cmCursesMainForm;
diff --git a/Source/CursesDialog/cmCursesCacheEntryComposite.cxx 
b/Source/CursesDialog/cmCursesCacheEntryComposite.cxx
index 462cb6e..d115c77 100644
--- a/Source/CursesDialog/cmCursesCacheEntryComposite.cxx
+++ b/Source/CursesDialog/cmCursesCacheEntryComposite.cxx
@@ -11,18 +11,20 @@
 */
 #include "cmCursesCacheEntryComposite.h"
 
-#include "../cmState.h"
-#include "../cmSystemTools.h"
-#include "../cmake.h"
 #include "cmCursesBoolWidget.h"
-#include "cmCursesDummyWidget.h"
 #include "cmCursesFilePathWidget.h"
 #include "cmCursesLabelWidget.h"
 #include "cmCursesOptionsWidget.h"
 #include "cmCursesPathWidget.h"
 #include "cmCursesStringWidget.h"
+#include "cmCursesWidget.h"
+#include "cmState.h"
+#include "cmSystemTools.h"
+#include "cmake.h"
 
 #include 
+#include 
+#include 
 
 cmCursesCacheEntryComposite::cmCursesCacheEntryComposite(
   const std::string& key, int labelwidth, int entrywidth)
diff --git a/Source/CursesDialog/cmCursesCacheEntryComposite.h 
b/Source/CursesDialog/cmCursesCacheEntryComposite.h
index c9c8238..c717e1a 100644
--- a/Source/CursesDialog/cmCursesCacheEntryComposite.h
+++ b/Source/CursesDialog/cmCursesCacheEntryComposite.h
@@ -12,8 +12,12 @@
 #ifndef cmCursesCacheEntryComposite_h
 #define cmCursesCacheEntryComposite_h
 
-#include "cmCursesLabelWidget.h"
+#include  // IWYU pragma: keep
 
+#include 
+
+class cmCursesLabelWidget;
+class cmCursesWidget;
 class cmake;
 
 class cmCursesCacheEntryComposite
diff --git a/Source/CursesDialog/cmCursesDummyWidget.cxx 
b/Source/CursesDialog/cmCursesDummyWidget.cxx
index a960090..fe73e7e 100644
--- a/Source/CursesDialo

[Cmake-commits] CMake branch, next, updated. v3.6.1-1755-g5871837

2016-09-03 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  5871837d2774cf2f6bf50d284fb705c6210640b2 (commit)
   via  bfdf1322e7638687c96b323b1df20fd9c08b3044 (commit)
   via  4da61391eec301ab564ac8e3e5ee9dc7ffd4f8de (commit)
   via  44efb0a747593f4c6ac463e2d0221ab05dd49c6d (commit)
   via  61b99cdeaa189647362c5375560b238279b36742 (commit)
  from  081ad4fd9577fac940884baf7fb875fdf36a0961 (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=5871837d2774cf2f6bf50d284fb705c6210640b2
commit 5871837d2774cf2f6bf50d284fb705c6210640b2
Merge: 081ad4f bfdf132
Author: Brad King 
AuthorDate: Sat Sep 3 08:10:32 2016 -0400
Commit: Brad King 
CommitDate: Sat Sep 3 08:10:32 2016 -0400

Merge branch 'master' into next


---

Summary of changes:


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.6.1-846-g44efb0a

2016-09-03 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  44efb0a747593f4c6ac463e2d0221ab05dd49c6d (commit)
   via  b61eab249f6d119e6353c02c4c79ccb15a3825b9 (commit)
  from  61b99cdeaa189647362c5375560b238279b36742 (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=44efb0a747593f4c6ac463e2d0221ab05dd49c6d
commit 44efb0a747593f4c6ac463e2d0221ab05dd49c6d
Merge: 61b99cd b61eab2
Author: Brad King 
AuthorDate: Sat Sep 3 08:10:12 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 08:10:12 2016 -0400

Merge topic 'FindHDF5-is-parallel'

b61eab24 FindHDF5: Fix regression in providing HDF5_IS_PARALLEL


---

Summary of changes:
 Modules/FindHDF5.cmake |   68 ++--
 1 file changed, 60 insertions(+), 8 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, master, updated. v3.6.1-855-gbfdf132

2016-09-03 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  bfdf1322e7638687c96b323b1df20fd9c08b3044 (commit)
   via  efed6468eda950644014ccfada85300710e05009 (commit)
   via  bd3d0eafbb362fbc0f140c228da85791a473e44e (commit)
   via  3838a0d5fbed480c007b1667eddf2d6797a24344 (commit)
   via  54140848181e15acfda9c385e6cdc5c8b4f2a1d6 (commit)
   via  3f9c4cdf89ce00ae72a1176dbf5e68b5f1f1720e (commit)
  from  4da61391eec301ab564ac8e3e5ee9dc7ffd4f8de (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=bfdf1322e7638687c96b323b1df20fd9c08b3044
commit bfdf1322e7638687c96b323b1df20fd9c08b3044
Merge: 4da6139 efed646
Author: Brad King 
AuthorDate: Sat Sep 3 08:10:18 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 08:10:18 2016 -0400

Merge topic 'include-what-you-use'

efed6468 fix a load of include-what-you-use violations
bd3d0eaf cmCTest: don't redefine cout and cerr
3838a0d5 make sure to include cmConfigure.h before cmStandardIncludes.h
54140848 Tests/CMakeLib: include what you use
3f9c4cdf Tests/CMakeLib: use cmsys::ifstream


---

Summary of changes:
 Source/CPack/WiX/cmWIXRichTextFormatWriter.h   |2 +
 Source/CPack/cmCPackComponentGroup.h   |2 +
 Source/CursesDialog/cmCursesStandardIncludes.h |2 +
 Source/QtDialog/CMakeSetup.cxx |2 +
 Source/bindexplib.h|2 +
 Source/cmAlgorithms.h  |2 +
 Source/cmCTest.cxx |   56 ++--
 Source/cmCTest.h   |   26 --
 Source/cmCallVisualStudioMacro.h   |2 +
 Source/cmCommandArgumentParserHelper.cxx   |   10 +++-
 Source/cmCommandArgumentParserHelper.h |5 +-
 Source/cmCommandArgumentsHelper.h  |2 +
 Source/cmConditionEvaluator.cxx|1 +
 Source/cmConfigure.cmake.h.in  |2 +-
 Source/cmCryptoHash.cxx|2 +
 Source/cmCryptoHash.h  |4 +-
 Source/cmCurl.cxx  |9 +++-
 Source/cmCurl.h|5 +-
 Source/cmCustomCommand.cxx |2 +-
 Source/cmCustomCommand.h   |8 ++-
 Source/cmCustomCommandGenerator.cxx|7 +++
 Source/cmCustomCommandGenerator.h  |7 ++-
 Source/cmDefinitions.cxx   |2 +
 Source/cmDefinitions.h |9 ++--
 Source/cmDepends.cxx   |3 ++
 Source/cmDepends.h |9 +++-
 Source/cmDependsC.cxx  |5 +-
 Source/cmDependsC.h|9 
 Source/cmDependsFortran.cxx|8 ++-
 Source/cmDependsFortran.h  |7 +++
 Source/cmDependsJava.cxx   |1 -
 Source/cmDependsJava.h |7 +++
 Source/cmDependsJavaLexer.cxx  |2 +
 Source/cmDependsJavaParserHelper.cxx   |7 +++
 Source/cmDependsJavaParserHelper.h |5 +-
 Source/cmDocumentation.cxx |9 ++--
 Source/cmDocumentation.h   |   14 ++---
 Source/cmDocumentationFormatter.cxx|6 +++
 Source/cmDocumentationFormatter.h  |4 +-
 Source/cmDocumentationSection.h|7 ++-
 Source/cmDynamicLoader.cxx |7 +++
 Source/cmDynamicLoader.h   |2 +-
 Source/cmELF.cxx   |8 ++-
 Source/cmELF.h |5 ++
 Source/cmExecutionStatus.h |2 +
 Source/cmExpandedCommandArgument.h |2 +
 Source/cmExportBuildFileGenerator.cxx  |   14 +
 Source/cmExportBuildFileGenerator.h|   10 +++-
 Source/cmExportFileGenerator.cxx   |   13 +++--
 Source/cmExportFileGenerator.h |   14 +++--
 Source/cmExportInstallFileGenerator.cxx|   10 
 Source/cmExportInstallFileGenerator.h  |   10 
 Source/cmExportSet.h   |7 ++-
 Source/cmExportSetMap.cxx  |2 +
 Source/cmExportSetMap.h|5 +-
 Source/cmExportTryCompileFileGenerator.cxx |   11 +++-
 Source/cmExportTryCompileFileGenerator.h   |   12 -
 Source/cmExprLexer.cxx

[Cmake-commits] CMake branch, master, updated. v3.6.1-844-g61b99cd

2016-09-03 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  61b99cdeaa189647362c5375560b238279b36742 (commit)
   via  befe8648a3813e35869e8ba8291f43cb8bfca962 (commit)
  from  87e76f899693fb3c29f280b417303e899c3a38dd (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=61b99cdeaa189647362c5375560b238279b36742
commit 61b99cdeaa189647362c5375560b238279b36742
Merge: 87e76f8 befe864
Author: Brad King 
AuthorDate: Sat Sep 3 08:10:09 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 08:10:09 2016 -0400

Merge topic 'FindHDF5-fix-hl-fortran'

befe8648 FindHDF5: Fix regression in finding hdf5hl_fortran


---

Summary of changes:
 Modules/FindHDF5.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.6.1-849-g4da6139

2016-09-03 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  4da61391eec301ab564ac8e3e5ee9dc7ffd4f8de (commit)
   via  c03a7b4f517fc4395a68cdfd143254b0a56622af (commit)
   via  3825a564930ffe09fd681632a905ab9c91c41d98 (commit)
  from  44efb0a747593f4c6ac463e2d0221ab05dd49c6d (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=4da61391eec301ab564ac8e3e5ee9dc7ffd4f8de
commit 4da61391eec301ab564ac8e3e5ee9dc7ffd4f8de
Merge: 44efb0a c03a7b4
Author: Brad King 
AuthorDate: Sat Sep 3 08:10:16 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 08:10:16 2016 -0400

Merge topic 'libuv-scanbuild-fixes'

c03a7b4f CTestCustom: Suppress scan-build warnings in libuv
3825a564 libuv: Simplify variable initializations to satisfy Clang 
scan-build


---

Summary of changes:
 CTestCustom.cmake.in  |3 +++
 Utilities/cmlibuv/src/unix/pipe.c |7 ++-
 Utilities/cmlibuv/src/unix/tty.c  |7 ++-
 3 files changed, 7 insertions(+), 10 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.6.1-1750-g081ad4f

2016-09-03 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  081ad4fd9577fac940884baf7fb875fdf36a0961 (commit)
   via  efed6468eda950644014ccfada85300710e05009 (commit)
   via  bd3d0eafbb362fbc0f140c228da85791a473e44e (commit)
   via  3838a0d5fbed480c007b1667eddf2d6797a24344 (commit)
   via  54140848181e15acfda9c385e6cdc5c8b4f2a1d6 (commit)
   via  3f9c4cdf89ce00ae72a1176dbf5e68b5f1f1720e (commit)
  from  cd275e331a9406bc479d325b429717b1a643358a (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=081ad4fd9577fac940884baf7fb875fdf36a0961
commit 081ad4fd9577fac940884baf7fb875fdf36a0961
Merge: cd275e3 efed646
Author: Brad King 
AuthorDate: Sat Sep 3 08:08:02 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 08:08:02 2016 -0400

Merge topic 'include-what-you-use' into next

efed6468 fix a load of include-what-you-use violations
bd3d0eaf cmCTest: don't redefine cout and cerr
3838a0d5 make sure to include cmConfigure.h before cmStandardIncludes.h
54140848 Tests/CMakeLib: include what you use
3f9c4cdf Tests/CMakeLib: use cmsys::ifstream


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=efed6468eda950644014ccfada85300710e05009
commit efed6468eda950644014ccfada85300710e05009
Author: Daniel Pfeifer 
AuthorDate: Thu Sep 1 20:59:28 2016 +0200
Commit: Brad King 
CommitDate: Sat Sep 3 08:04:56 2016 -0400

fix a load of include-what-you-use violations

diff --git a/Source/QtDialog/CMakeSetup.cxx b/Source/QtDialog/CMakeSetup.cxx
index ee3389c..5a8a5be 100644
--- a/Source/QtDialog/CMakeSetup.cxx
+++ b/Source/QtDialog/CMakeSetup.cxx
@@ -27,6 +27,8 @@
 #include 
 #include 
 
+#include "cmSystemTools.h" // IWYU pragma: keep
+
 static const char* cmDocumentationName[][2] = { { 0,
   "  cmake-gui - CMake GUI." },
 { 0, 0 } };
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index b4ddc3e..6523e3e 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -9,52 +9,54 @@
   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
   See the License for more information.
 */
-#include "cmCurl.h" // include before anything that includes windows.h
-
 #include "cmCTest.h"
 
 #include "cmAlgorithms.h"
-#include "cmCTestCommand.h"
-#include "cmCTestStartCommand.h"
-#include "cmDynamicLoader.h"
-#include "cmGeneratedFileStream.h"
-#include "cmGlobalGenerator.h"
-#include "cmMakefile.h"
-#include "cmState.h"
-#include "cmVersionMacros.h"
-#include "cmXMLWriter.h"
-#include "cmake.h"
-#include 
-#include 
-#include 
-#include 
-
 #include "cmCTestBuildAndTestHandler.h"
 #include "cmCTestBuildHandler.h"
 #include "cmCTestConfigureHandler.h"
 #include "cmCTestCoverageHandler.h"
+#include "cmCTestGenericHandler.h"
 #include "cmCTestMemCheckHandler.h"
 #include "cmCTestScriptHandler.h"
+#include "cmCTestStartCommand.h"
 #include "cmCTestSubmitHandler.h"
 #include "cmCTestTestHandler.h"
 #include "cmCTestUpdateHandler.h"
 #include "cmCTestUploadHandler.h"
-
+#include "cmCurl.h"
+#include "cmDynamicLoader.h"
+#include "cmGeneratedFileStream.h"
+#include "cmGlobalGenerator.h"
+#include "cmMakefile.h"
+#include "cmState.h"
+#include "cmSystemTools.h"
 #include "cmVersion.h"
+#include "cmVersionConfig.h"
+#include "cmXMLWriter.h"
+#include "cmake.h"
 
+#include 
+#include 
+#include 
+#include 
+#include 
+#include 
 #include 
 #include 
-#include 
-
+#include 
+#include 
 #include 
-#include 
-#include 
+#include 
+#include 
+#include 
+#include 
 #include 
-
-#include 
-
-#include 
-#include 
+#include 
+#include 
+#include 
+#include 
+#include 
 
 #if defined(__BEOS__) || defined(__HAIKU__)
 #include  /* disable_debugger() API. */
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 9d661d4..a73cd83 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -15,18 +15,18 @@
 
 #include 
 
-#include "cmStandardIncludes.h"
-
-#include "cmListFileCache.h"
+#include 
+#include 
+#include 
+#include 
+#include 
 #include 
+#include 
 
-class cmake;
-class cmMakefile;
 class cmCTestGenericHandler;
-class cmGeneratedFileStream;
-class cmCTestCommand;
-class cmCTestScriptHandler;
 class cmCTestStartCommand;
+class cmGeneratedFileStream;
+class cmMakefile;
 class cmXMLWriter;
 
 #define cmCTestLog(ctSelf, logType, msg)  \
diff --git a/Source/cmCommandArgumentParserHelper.cxx 
b/Source/cmCommandArgumentParserHelper.cxx
index 68111a0..6a2dfe8 100644
--- a/Source/c

[Cmake-commits] CMake branch, next, updated. v3.6.1-1744-gcd275e3

2016-09-03 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  cd275e331a9406bc479d325b429717b1a643358a (commit)
   via  8eb648208f91d66b26bb7a9177e1d5d1fad25575 (commit)
   via  87e76f899693fb3c29f280b417303e899c3a38dd (commit)
  from  54df8a8b0a1148254ba838fe6901fe2f2bf173d9 (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=cd275e331a9406bc479d325b429717b1a643358a
commit cd275e331a9406bc479d325b429717b1a643358a
Merge: 54df8a8 8eb6482
Author: Brad King 
AuthorDate: Sat Sep 3 08:07:07 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 08:07:07 2016 -0400

Merge topic 'include-what-you-use' into next

8eb64820 Merge branch 'master' into include-what-you-use
87e76f89 CMake Nightly Date Stamp


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8eb648208f91d66b26bb7a9177e1d5d1fad25575
commit 8eb648208f91d66b26bb7a9177e1d5d1fad25575
Merge: b61a64b 87e76f8
Author: Brad King 
AuthorDate: Sat Sep 3 08:04:04 2016 -0400
Commit: Brad King 
CommitDate: Sat Sep 3 08:04:04 2016 -0400

Merge branch 'master' into include-what-you-use


---

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, next, updated. v3.6.1-1741-g54df8a8

2016-09-03 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  54df8a8b0a1148254ba838fe6901fe2f2bf173d9 (commit)
   via  c03a7b4f517fc4395a68cdfd143254b0a56622af (commit)
  from  0c0137edc49ed3612afda8482f0d4509269e0842 (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=54df8a8b0a1148254ba838fe6901fe2f2bf173d9
commit 54df8a8b0a1148254ba838fe6901fe2f2bf173d9
Merge: 0c0137e c03a7b4
Author: Brad King 
AuthorDate: Sat Sep 3 07:57:45 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 07:57:45 2016 -0400

Merge topic 'libuv-scanbuild-fixes' into next

c03a7b4f CTestCustom: Suppress scan-build warnings in libuv


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c03a7b4f517fc4395a68cdfd143254b0a56622af
commit c03a7b4f517fc4395a68cdfd143254b0a56622af
Author: Brad King 
AuthorDate: Thu Sep 1 11:14:19 2016 -0400
Commit: Brad King 
CommitDate: Sat Sep 3 07:56:13 2016 -0400

CTestCustom: Suppress scan-build warnings in libuv

Clang scan-build warns in some expansions of RB_GENERATE_STATIC
that it has a "Dereference of null pointer".  It also warns that
"The left operand of '==' is a garbage value" strangely.  Simply
suppress these since this is third-party code anyway.

diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in
index a39049b..1699492 100644
--- a/CTestCustom.cmake.in
+++ b/CTestCustom.cmake.in
@@ -62,6 +62,7 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION
   "warning.*This version of Mac OS X is unsupported"
   "clang.*: warning: argument unused during compilation: .-g"
   "note: in expansion of macro" # diagnostic context note
+  "note: expanded from macro" # diagnostic context note
   "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*rand.*may return 
deterministic values"
   "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*rand.*isn.*t random" # 
we do not do crypto
   "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*srand.*seed choices 
are.*poor" # we do not do crypto
@@ -82,6 +83,8 @@ list(APPEND CTEST_CUSTOM_WARNING_EXCEPTION
   "cm_sha2.*warning: Value stored to.*is never read"
   "testProcess.*warning: Dereference of null pointer .loaded from variable 
.invalidAddress.."
   "liblzma/simple/x86.c:[0-9]+:[0-9]+: warning: The result of the '<<' 
expression is undefined"
+  "libuv/src/.*:[0-9]+:[0-9]+: warning: Dereference of null pointer"
+  "libuv/src/.*:[0-9]+:[0-9]+: warning: The left operand of '==' is a garbage 
value"
   )
 
 if(NOT "@CMAKE_GENERATOR@" MATCHES "Xcode")

---

Summary of changes:


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.6.1-1739-g0c0137e

2016-09-03 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  0c0137edc49ed3612afda8482f0d4509269e0842 (commit)
   via  4f045166ca6731971fe852f501c4a266031786ac (commit)
  from  25e5ed190800415a6423e98e3de023a6b4b3251f (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=0c0137edc49ed3612afda8482f0d4509269e0842
commit 0c0137edc49ed3612afda8482f0d4509269e0842
Merge: 25e5ed1 4f04516
Author: Brad King 
AuthorDate: Sat Sep 3 07:53:53 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 07:53:53 2016 -0400

Merge topic 'test-GenerateExportHeader-with-RunCMake' into next

4f045166 GNU: Do not use -fvisibility on AIX or HP-UX


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4f045166ca6731971fe852f501c4a266031786ac
commit 4f045166ca6731971fe852f501c4a266031786ac
Author: Brad King 
AuthorDate: Sat Sep 3 07:50:47 2016 -0400
Commit: Brad King 
CommitDate: Sat Sep 3 07:51:59 2016 -0400

GNU: Do not use -fvisibility on AIX or HP-UX

Use of `-fvisibility=hidden` warns:

  warning: visibility attribute not supported in this configuration; ignored

diff --git a/Modules/Platform/AIX-GNU-CXX.cmake 
b/Modules/Platform/AIX-GNU-CXX.cmake
index ec8e83f..d047801 100644
--- a/Modules/Platform/AIX-GNU-CXX.cmake
+++ b/Modules/Platform/AIX-GNU-CXX.cmake
@@ -1,2 +1,3 @@
 include(Platform/AIX-GNU)
 __aix_compiler_gnu(CXX)
+unset(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN)
diff --git a/Modules/Platform/AIX-GNU.cmake b/Modules/Platform/AIX-GNU.cmake
index df97ab1..ce6faff 100644
--- a/Modules/Platform/AIX-GNU.cmake
+++ b/Modules/Platform/AIX-GNU.cmake
@@ -34,4 +34,5 @@ macro(__aix_compiler_gnu lang)
   set(CMAKE_${lang}_USE_IMPLICIT_LINK_DIRECTORIES_IN_RUNTIME_PATH 1)
 
   set(CMAKE_${lang}_LINK_FLAGS "-Wl,-bnoipath")
+  unset(CMAKE_${lang}_COMPILE_OPTIONS_VISIBILITY)
 endmacro()
diff --git a/Modules/Platform/HP-UX-GNU-CXX.cmake 
b/Modules/Platform/HP-UX-GNU-CXX.cmake
index 689bed0..ac72560 100644
--- a/Modules/Platform/HP-UX-GNU-CXX.cmake
+++ b/Modules/Platform/HP-UX-GNU-CXX.cmake
@@ -1,2 +1,3 @@
 include(Platform/HP-UX-GNU)
 __hpux_compiler_gnu(CXX)
+unset(CMAKE_CXX_COMPILE_OPTIONS_VISIBILITY_INLINES_HIDDEN)
diff --git a/Modules/Platform/HP-UX-GNU.cmake b/Modules/Platform/HP-UX-GNU.cmake
index 6c71784..cbd8164 100644
--- a/Modules/Platform/HP-UX-GNU.cmake
+++ b/Modules/Platform/HP-UX-GNU.cmake
@@ -26,4 +26,5 @@ macro(__hpux_compiler_gnu lang)
   set(CMAKE_SHARED_LIBRARY_SONAME_${lang}_FLAG "-Wl,+h")
 
   set(CMAKE_${lang}_LINK_FLAGS "-Wl,+s,+nodefaultrpath")
+  unset(CMAKE_${lang}_COMPILE_OPTIONS_VISIBILITY)
 endmacro()

---

Summary of changes:
 Modules/Platform/AIX-GNU-CXX.cmake   |1 +
 Modules/Platform/AIX-GNU.cmake   |1 +
 Modules/Platform/HP-UX-GNU-CXX.cmake |1 +
 Modules/Platform/HP-UX-GNU.cmake |1 +
 4 files changed, 4 insertions(+)


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.6.1-1737-g25e5ed1

2016-09-03 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  25e5ed190800415a6423e98e3de023a6b4b3251f (commit)
   via  3e380ba055818d14064c42080ffe00b216b92b1b (commit)
  from  2c0c7856e20026c74311d927a63338e26cfeb727 (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=25e5ed190800415a6423e98e3de023a6b4b3251f
commit 25e5ed190800415a6423e98e3de023a6b4b3251f
Merge: 2c0c785 3e380ba
Author: Brad King 
AuthorDate: Sat Sep 3 07:27:34 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 07:27:34 2016 -0400

Merge topic 'test-GenerateExportHeader-with-RunCMake' into next

3e380ba0 fixup! Tests: Cleanup RunCMake.GenerateExportHeader somewhat


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3e380ba055818d14064c42080ffe00b216b92b1b
commit 3e380ba055818d14064c42080ffe00b216b92b1b
Author: Brad King 
AuthorDate: Sat Sep 3 07:26:40 2016 -0400
Commit: Brad King 
CommitDate: Sat Sep 3 07:26:40 2016 -0400

fixup! Tests: Cleanup RunCMake.GenerateExportHeader somewhat

diff --git 
a/Tests/RunCMake/GenerateExportHeader/lib_shared_and_static/CMakeLists.txt 
b/Tests/RunCMake/GenerateExportHeader/lib_shared_and_static/CMakeLists.txt
index 2828437..ff81f35 100644
--- a/Tests/RunCMake/GenerateExportHeader/lib_shared_and_static/CMakeLists.txt
+++ b/Tests/RunCMake/GenerateExportHeader/lib_shared_and_static/CMakeLists.txt
@@ -28,6 +28,6 @@ generate_export_header(shared_variant
   CUSTOM_CONTENT_FROM_VARIABLE MY_CUSTOM_CONTENT
 )
 
-set_target_properties(static_variant PROPERTIES COMPILE_FLAGS 
-DLIBSHARED_AND_STATIC_STATIC_DEFINE)
+target_compile_definitions(static_variant PUBLIC 
MYPREFIX_LIBSHARED_AND_STATIC_STATIC_DEFINE)
 
 export(TARGETS shared_variant static_variant FILE Targets.cmake)

---

Summary of changes:
 .../GenerateExportHeader/lib_shared_and_static/CMakeLists.txt|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, next, updated. v3.6.1-1735-g2c0c785

2016-09-03 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  2c0c7856e20026c74311d927a63338e26cfeb727 (commit)
   via  623c50b9ac306808df37f5cb1bfddc5883d83f79 (commit)
  from  e57f054dd843dfaf3e286b56ebbbad267d9297e1 (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=2c0c7856e20026c74311d927a63338e26cfeb727
commit 2c0c7856e20026c74311d927a63338e26cfeb727
Merge: e57f054 623c50b
Author: Brad King 
AuthorDate: Sat Sep 3 06:35:34 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 06:35:34 2016 -0400

Merge topic 'test-GenerateExportHeader-with-RunCMake' into next

623c50b9 fixup! Tests: Cleanup RunCMake.GenerateExportHeader somewhat


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=623c50b9ac306808df37f5cb1bfddc5883d83f79
commit 623c50b9ac306808df37f5cb1bfddc5883d83f79
Author: Brad King 
AuthorDate: Sat Sep 3 06:35:14 2016 -0400
Commit: Brad King 
CommitDate: Sat Sep 3 06:35:14 2016 -0400

fixup! Tests: Cleanup RunCMake.GenerateExportHeader somewhat

diff --git a/Tests/RunCMake/GenerateExportHeader/c_identifier/main.cpp 
b/Tests/RunCMake/GenerateExportHeader/c_identifier/main.cpp
index 891bc42..887d777 100644
--- a/Tests/RunCMake/GenerateExportHeader/c_identifier/main.cpp
+++ b/Tests/RunCMake/GenerateExportHeader/c_identifier/main.cpp
@@ -1,7 +1,7 @@
 
 #include "c_identifier_class.h"
 
-int main(int argc, char** argv)
+int main()
 {
   CIdentifierClass cic;
   return cic.someMethod();
diff --git a/Tests/RunCMake/GenerateExportHeader/nodeprecated/src/main.cpp 
b/Tests/RunCMake/GenerateExportHeader/nodeprecated/src/main.cpp
index eec46d3..f90d098 100644
--- a/Tests/RunCMake/GenerateExportHeader/nodeprecated/src/main.cpp
+++ b/Tests/RunCMake/GenerateExportHeader/nodeprecated/src/main.cpp
@@ -1,7 +1,7 @@
 
 #include "someclass.h"
 
-int main(int, char**)
+int main()
 {
   SomeClass sc;
   sc.someMethod();

---

Summary of changes:
 Tests/RunCMake/GenerateExportHeader/c_identifier/main.cpp |2 +-
 Tests/RunCMake/GenerateExportHeader/nodeprecated/src/main.cpp |2 +-
 2 files 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.6.1-1733-ge57f054

2016-09-03 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  e57f054dd843dfaf3e286b56ebbbad267d9297e1 (commit)
   via  6bfda4fcb221fb439ca6b6349a7935e34cbfbcff (commit)
  from  4cb699fda5a6f70e1641deba4730a87fd287c6bb (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=e57f054dd843dfaf3e286b56ebbbad267d9297e1
commit e57f054dd843dfaf3e286b56ebbbad267d9297e1
Merge: 4cb699f 6bfda4f
Author: Brad King 
AuthorDate: Sat Sep 3 06:26:47 2016 -0400
Commit: CMake Topic Stage 
CommitDate: Sat Sep 3 06:26:47 2016 -0400

Merge topic 'test-GenerateExportHeader-with-RunCMake' into next

6bfda4fc fixup! Tests: Cleanup RunCMake.GenerateExportHeader somewhat


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6bfda4fcb221fb439ca6b6349a7935e34cbfbcff
commit 6bfda4fcb221fb439ca6b6349a7935e34cbfbcff
Author: Brad King 
AuthorDate: Sat Sep 3 06:26:11 2016 -0400
Commit: Brad King 
CommitDate: Sat Sep 3 06:26:11 2016 -0400

fixup! Tests: Cleanup RunCMake.GenerateExportHeader somewhat

diff --git a/Tests/RunCMake/GenerateExportHeader/nodeprecated/CMakeLists.txt.in 
b/Tests/RunCMake/GenerateExportHeader/nodeprecated/CMakeLists.txt.in
index d8dc482..90cfa12 100644
--- a/Tests/RunCMake/GenerateExportHeader/nodeprecated/CMakeLists.txt.in
+++ b/Tests/RunCMake/GenerateExportHeader/nodeprecated/CMakeLists.txt.in
@@ -1,4 +1,4 @@
-cmake_minimum_required(VERSION 2.8)
+cmake_minimum_required(VERSION 3.6)
 
 project(nodeprecated_test)
 

---

Summary of changes:
 Tests/RunCMake/GenerateExportHeader/nodeprecated/CMakeLists.txt.in |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