[Cmake-commits] CMake branch, master, updated. v2.8.5-444-g3246dc2

2011-09-07 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  3246dc26651c50cebd99b64ca8fb1a05873f192f (commit)
  from  4e3d428cc30a6a45477720c8153b4f32952ae949 (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=3246dc26651c50cebd99b64ca8fb1a05873f192f
commit 3246dc26651c50cebd99b64ca8fb1a05873f192f
Author: KWSys Robot 
AuthorDate: Thu Sep 8 00:01:34 2011 -0400
Commit: KWSys Robot 
CommitDate: Thu Sep 8 00:14:08 2011 -0400

KWSys Nightly Date Stamp

diff --git a/Source/kwsys/kwsysDateStamp.cmake 
b/Source/kwsys/kwsysDateStamp.cmake
index d3033d9..0599668 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 09)
 
 # KWSys version date day component.  Format is DD.
-SET(KWSYS_DATE_STAMP_DAY   07)
+SET(KWSYS_DATE_STAMP_DAY   08)

---

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.5-1857-gec84345

2011-09-07 Thread David Cole
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  ec8434567837e8305a2d67734d49f0b70ad7fe3b (commit)
   via  3a0d63242d959871b8f047e7f7ee1531f113f436 (commit)
  from  abf88b50008f60c76aeaa751f2ee20ceab2114c3 (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=ec8434567837e8305a2d67734d49f0b70ad7fe3b
commit ec8434567837e8305a2d67734d49f0b70ad7fe3b
Merge: abf88b5 3a0d632
Author: David Cole 
AuthorDate: Wed Sep 7 19:19:43 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 19:19:43 2011 -0400

Merge topic 'add-kwstyle-test' into next

3a0d632 KWStyle Test: Activate by default if KWStyle is found


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3a0d63242d959871b8f047e7f7ee1531f113f436
commit 3a0d63242d959871b8f047e7f7ee1531f113f436
Author: David Cole 
AuthorDate: Wed Sep 7 19:04:44 2011 -0400
Commit: David Cole 
CommitDate: Wed Sep 7 19:04:44 2011 -0400

KWStyle Test: Activate by default if KWStyle is found

Re-arrange the logic to look for KWStyle in the typical install
locations and under the Dashboards/Support directory for the
typical CMake dashboard machine. If it's there, turn on CMAKE_USE_KWSTYLE
by default, thereby activating the KWStyle related custom targets
and the KWStyle test.

diff --git a/Utilities/KWStyle/CMakeLists.txt b/Utilities/KWStyle/CMakeLists.txt
index 4803ffa..5b0c84e 100644
--- a/Utilities/KWStyle/CMakeLists.txt
+++ b/Utilities/KWStyle/CMakeLists.txt
@@ -12,17 +12,34 @@
 
 #-
 # CMake uses KWStyle for checking the coding style
-OPTION(CMAKE_USE_KWSTYLE "Run KWStyle in order to check for violations of the 
coding standard." OFF)
-MARK_AS_ADVANCED(CMAKE_USE_KWSTYLE)
 
-IF(CMAKE_USE_KWSTYLE)
-  FIND_PROGRAM(KWSTYLE_EXECUTABLE
+# Search for a built-from-source KWStyle under Dashboards/Support on a typical
+# dashboard machines:
+#
+SET(home "$ENV{HOME}")
+IF(NOT home)
+  STRING(REPLACE "\\" "/" home "$ENV{USERPROFILE}")
+ENDIF()
+
+FIND_PROGRAM(KWSTYLE_EXECUTABLE
   NAMES KWStyle 
   PATHS
   "[HKEY_LOCAL_MACHINE\\SOFTWARE\\Kitware Inc.\\KWStyle 1.0.0]/bin"
+  "${home}/Dashboards/Support/KWStyle/bin"
   )
-  MARK_AS_ADVANCED(KWSTYLE_EXECUTABLE)
+MARK_AS_ADVANCED(KWSTYLE_EXECUTABLE)
+
+SET(CMAKE_USE_KWSTYLE_DEFAULT OFF)
+IF(KWSTYLE_EXECUTABLE)
+  SET(CMAKE_USE_KWSTYLE_DEFAULT ON)
+ENDIF()
 
+OPTION(CMAKE_USE_KWSTYLE
+  "Add StyleCheck target and KWStyle test: run KWStyle to check for coding 
standard violations."
+  ${CMAKE_USE_KWSTYLE_DEFAULT})
+MARK_AS_ADVANCED(CMAKE_USE_KWSTYLE)
+
+IF(CMAKE_USE_KWSTYLE)
   OPTION(KWSTYLE_USE_VIM_FORMAT "Set KWStyle to generate errors with a 
VIM-compatible format." OFF)
   OPTION(KWSTYLE_USE_MSVC_FORMAT "Set KWStyle to generate errors with a 
VisualStudio-compatible format." OFF)
   MARK_AS_ADVANCED(KWSTYLE_USE_VIM_FORMAT)
@@ -59,4 +76,3 @@ IF(CMAKE_USE_KWSTYLE)
 
   ADD_CUSTOM_TARGET(StyleCheck DEPENDS ${CMake_BINARY_DIR}/KWStyleReport.txt)
 ENDIF(CMAKE_USE_KWSTYLE)
-

---

Summary of changes:
 Utilities/KWStyle/CMakeLists.txt |   28 ++--
 1 files changed, 22 insertions(+), 6 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.5-1855-gabf88b5

2011-09-07 Thread David Cole
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  abf88b50008f60c76aeaa751f2ee20ceab2114c3 (commit)
   via  4e3d428cc30a6a45477720c8153b4f32952ae949 (commit)
   via  fde0a4ddd104be279600f3a80521169708a84875 (commit)
   via  1a5c99581eddd677ba30653d0cb68161a4e0cb8f (commit)
   via  07eb08439ddeaaab1115acaf717b52319efdfb13 (commit)
   via  c80cbad15226844c2c518e49656fe19fc52d8d33 (commit)
   via  05bc6bfb87a9afe9c85bd90406fce348a92b7807 (commit)
   via  de62fd1b6d268702473b3307f48eb4cefb8c2c5d (commit)
   via  db4154661cfa1baf2596ce4c68ac8a328690245d (commit)
   via  54730d7604a69975e66047c3b5f406df89a4ade5 (commit)
   via  2ea27a54d97c72870ed69c9bde17826faf87f6d3 (commit)
   via  f62540adcc1dd53b66534f6ed7c03b5e5daf1d26 (commit)
   via  4558e63a037b8f885cb883a2adc47231d7a0 (commit)
   via  d9ad72542ae60b34d1b0debd3fd4616d9896985f (commit)
   via  103ab60dd7314f6a75b02dc65d40a99efedc5391 (commit)
   via  18897d63a5370706312b2b1b8b8900a792ab6056 (commit)
   via  a239fb6c16ab075fdbd2f306b3f34369f9087d43 (commit)
   via  56ce5dec8b9973528ae8b41a77e757c11eff81b1 (commit)
   via  5686515b6f9bc91d4a5b78f5a0d322cc5ab62f2b (commit)
   via  accdb855c293d081580f17ed8521ca20b0dcce0e (commit)
   via  540b25d529a1279f74df0a23140291f9557946db (commit)
  from  ab1d5554e97667b3332da594e032a66f896cc21a (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=abf88b50008f60c76aeaa751f2ee20ceab2114c3
commit abf88b50008f60c76aeaa751f2ee20ceab2114c3
Merge: ab1d555 4e3d428
Author: David Cole 
AuthorDate: Wed Sep 7 15:39:58 2011 -0400
Commit: David Cole 
CommitDate: Wed Sep 7 15:39:58 2011 -0400

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


[Cmake-commits] CMake branch, master, updated. v2.8.5-443-g4e3d428

2011-09-07 Thread David Cole
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  4e3d428cc30a6a45477720c8153b4f32952ae949 (commit)
   via  96d106a78d1dc634cc635678afa399f1f5e15ff3 (commit)
  from  fde0a4ddd104be279600f3a80521169708a84875 (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=4e3d428cc30a6a45477720c8153b4f32952ae949
commit 4e3d428cc30a6a45477720c8153b4f32952ae949
Merge: fde0a4d 96d106a
Author: David Cole 
AuthorDate: Wed Sep 7 15:39:21 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:39:21 2011 -0400

Merge topic 'fix-12446-no-cmake-E-build'

96d106a CMake: Remove documentation for -E build (#12446)


---

Summary of changes:
 Source/cmake.cxx |1 -
 Source/cmakemain.cxx |2 +-
 2 files changed, 1 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.5-441-gfde0a4d

2011-09-07 Thread David Cole
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  fde0a4ddd104be279600f3a80521169708a84875 (commit)
   via  cb22afc02c0524ff2b701b33a29339dde1e80bbd (commit)
  from  1a5c99581eddd677ba30653d0cb68161a4e0cb8f (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=fde0a4ddd104be279600f3a80521169708a84875
commit fde0a4ddd104be279600f3a80521169708a84875
Merge: 1a5c995 cb22afc
Author: David Cole 
AuthorDate: Wed Sep 7 15:39:15 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:39:15 2011 -0400

Merge topic 'fix-12377-xcode-honor-g0'

cb22afc Xcode: Honor -g0 to disable debugging (#12377)


---

Summary of changes:
 Source/cmGlobalXCodeGenerator.cxx |   35 ---
 1 files changed, 28 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.5-439-g1a5c995

2011-09-07 Thread David Cole
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  1a5c99581eddd677ba30653d0cb68161a4e0cb8f (commit)
   via  7b8dcdd17312a7c3ed731743468136b0ea89a6c7 (commit)
   via  d78bdb27832c91c775ad3782c9eb436dcd6a1e7c (commit)
  from  07eb08439ddeaaab1115acaf717b52319efdfb13 (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=1a5c99581eddd677ba30653d0cb68161a4e0cb8f
commit 1a5c99581eddd677ba30653d0cb68161a4e0cb8f
Merge: 07eb084 7b8dcdd
Author: David Cole 
AuthorDate: Wed Sep 7 15:39:03 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:39:03 2011 -0400

Merge topic 'fix-12284-cpack-symlinks'

7b8dcdd CPack: Do not recurse through directory symlinks (#12284)
d78bdb2 CMake: Write symlinks to directories as files in archives (#12284)


---

Summary of changes:
 Source/CPack/cmCPackGenerator.cxx |1 +
 Source/cmArchiveWrite.cxx |3 ++-
 2 files changed, 3 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.5-436-g07eb084

2011-09-07 Thread David Cole
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  07eb08439ddeaaab1115acaf717b52319efdfb13 (commit)
   via  339a321e66e142edbb0c6228caf368f09b4a072f (commit)
  from  c80cbad15226844c2c518e49656fe19fc52d8d33 (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=07eb08439ddeaaab1115acaf717b52319efdfb13
commit 07eb08439ddeaaab1115acaf717b52319efdfb13
Merge: c80cbad 339a321
Author: David Cole 
AuthorDate: Wed Sep 7 15:38:57 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:38:57 2011 -0400

Merge topic 'fix-ctesttestcrash-test'

339a321 Tests: Look for "Illegal" or "SegFault" in the output


---

Summary of changes:
 Tests/CMakeLists.txt |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.5-434-gc80cbad

2011-09-07 Thread David Cole
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  c80cbad15226844c2c518e49656fe19fc52d8d33 (commit)
   via  f9e527794159844963f6bd67b5627026a0f552a6 (commit)
  from  05bc6bfb87a9afe9c85bd90406fce348a92b7807 (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=c80cbad15226844c2c518e49656fe19fc52d8d33
commit c80cbad15226844c2c518e49656fe19fc52d8d33
Merge: 05bc6bf f9e5277
Author: David Cole 
AuthorDate: Wed Sep 7 15:38:50 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:38:50 2011 -0400

Merge topic 'CPackRPM-includeDir'

f9e5277 CPackRPM fix #12305, include directories in RPM package


---

Summary of changes:
 Modules/CPackRPM.cmake |4 +++-
 1 files changed, 3 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.5-432-g05bc6bf

2011-09-07 Thread David Cole
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  05bc6bfb87a9afe9c85bd90406fce348a92b7807 (commit)
   via  eb4af16298a9b456c0fd8df6e20727ce7f6f422c (commit)
  from  de62fd1b6d268702473b3307f48eb4cefb8c2c5d (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=05bc6bfb87a9afe9c85bd90406fce348a92b7807
commit 05bc6bfb87a9afe9c85bd90406fce348a92b7807
Merge: de62fd1 eb4af16
Author: David Cole 
AuthorDate: Wed Sep 7 15:38:32 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:38:32 2011 -0400

Merge topic 'fix-12260-fix-valgrind-output-parsing'

eb4af16 CTest: Fixed valgrind output parsing (#12260)


---

Summary of changes:
 Source/CTest/cmCTestMemCheckHandler.cxx |   24 
 1 files changed, 12 insertions(+), 12 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.5-430-gde62fd1

2011-09-07 Thread David Cole
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  de62fd1b6d268702473b3307f48eb4cefb8c2c5d (commit)
   via  b0f6a975870ab37a74557252908e91acfecbc59d (commit)
  from  db4154661cfa1baf2596ce4c68ac8a328690245d (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=de62fd1b6d268702473b3307f48eb4cefb8c2c5d
commit de62fd1b6d268702473b3307f48eb4cefb8c2c5d
Merge: db41546 b0f6a97
Author: David Cole 
AuthorDate: Wed Sep 7 15:38:27 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:38:27 2011 -0400

Merge topic 'CPackRPM-fix12366'

b0f6a97 CPack  fix #12366 components RPM packages have the same package name


---

Summary of changes:
 Modules/CPackRPM.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, master, updated. v2.8.5-428-gdb41546

2011-09-07 Thread David Cole
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  db4154661cfa1baf2596ce4c68ac8a328690245d (commit)
   via  e05e0f1d2c63353e25675df5430e1cbcd909cf93 (commit)
  from  54730d7604a69975e66047c3b5f406df89a4ade5 (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=db4154661cfa1baf2596ce4c68ac8a328690245d
commit db4154661cfa1baf2596ce4c68ac8a328690245d
Merge: 54730d7 e05e0f1
Author: David Cole 
AuthorDate: Wed Sep 7 15:38:16 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:38:16 2011 -0400

Merge topic 'fix-12370-no-space-in-target-name'

e05e0f1 Xcode: No spaces in makefile target names (#12370)


---

Summary of changes:
 Source/cmGlobalXCodeGenerator.cxx |4 +++-
 1 files changed, 3 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.5-426-g54730d7

2011-09-07 Thread David Cole
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  54730d7604a69975e66047c3b5f406df89a4ade5 (commit)
   via  dbd776dde7710a0bf1af1ca9c3554d9025502a31 (commit)
   via  93d8d1992ed94225bb0a5706f0a294524913dccc (commit)
  from  2ea27a54d97c72870ed69c9bde17826faf87f6d3 (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=54730d7604a69975e66047c3b5f406df89a4ade5
commit 54730d7604a69975e66047c3b5f406df89a4ade5
Merge: 2ea27a5 dbd776d
Author: David Cole 
AuthorDate: Wed Sep 7 15:38:00 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:38:00 2011 -0400

Merge topic 'generate_export_header'

dbd776d Don't put what some compilers consider junk at the end of the line.
93d8d19 Add some more unit tests.


---

Summary of changes:
 Modules/exportheader.cmake.in  |2 +-
 Tests/Module/GenerateExportHeader/CMakeLists.txt   |2 +
 .../nodeprecated/CMakeLists.txt|   26 
 .../nodeprecated/CMakeLists.txt.in |   15 +++
 .../{override_symbol => nodeprecated/src}/main.cpp |0
 .../nodeprecated/src/someclass.cpp |9 +++
 .../nodeprecated/src/someclass.h   |   10 +++
 .../GenerateExportHeader/prefix/CMakeLists.txt |   15 +++
 Tests/Module/GenerateExportHeader/prefix/main.cpp  |8 ++
 .../GenerateExportHeader/prefix/useprefixclass.cpp |7 +
 .../GenerateExportHeader/prefix/useprefixclass.h   |   13 ++
 11 files changed, 106 insertions(+), 1 deletions(-)
 create mode 100644 
Tests/Module/GenerateExportHeader/nodeprecated/CMakeLists.txt
 create mode 100644 
Tests/Module/GenerateExportHeader/nodeprecated/CMakeLists.txt.in
 copy Tests/Module/GenerateExportHeader/{override_symbol => 
nodeprecated/src}/main.cpp (100%)
 create mode 100644 
Tests/Module/GenerateExportHeader/nodeprecated/src/someclass.cpp
 create mode 100644 
Tests/Module/GenerateExportHeader/nodeprecated/src/someclass.h
 create mode 100644 Tests/Module/GenerateExportHeader/prefix/CMakeLists.txt
 create mode 100644 Tests/Module/GenerateExportHeader/prefix/main.cpp
 create mode 100644 Tests/Module/GenerateExportHeader/prefix/useprefixclass.cpp
 create mode 100644 Tests/Module/GenerateExportHeader/prefix/useprefixclass.h


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.5-423-g2ea27a5

2011-09-07 Thread David Cole
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  2ea27a54d97c72870ed69c9bde17826faf87f6d3 (commit)
   via  79701929fb7dc3a8aee913866bc8f9352af57ee7 (commit)
   via  28ce8b7a147e315eb4bce4f0ae014e100162aa59 (commit)
  from  f62540adcc1dd53b66534f6ed7c03b5e5daf1d26 (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=2ea27a54d97c72870ed69c9bde17826faf87f6d3
commit 2ea27a54d97c72870ed69c9bde17826faf87f6d3
Merge: f62540a 7970192
Author: David Cole 
AuthorDate: Wed Sep 7 15:37:56 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:37:56 2011 -0400

Merge topic 'suppress-qt-warning'

7970192 Suppress Qt warning for dashmacmini5 builds
28ce8b7 Suppress Qt warning for dashmacmini5 builds


---

Summary of changes:
 CTestCustom.cmake.in |1 +
 1 files changed, 1 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.5-420-gf62540a

2011-09-07 Thread David Cole
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  f62540adcc1dd53b66534f6ed7c03b5e5daf1d26 (commit)
   via  d1751fbf17d2c0e945f696b920fe0cf2a8ad14b2 (commit)
   via  4868921bc2b5ad85221d51d585bb2116a2826915 (commit)
   via  f47393c66bb1810a9916fa755bc5830fb9d24d63 (commit)
  from  4558e63a037b8f885cb883a2adc47231d7a0 (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=f62540adcc1dd53b66534f6ed7c03b5e5daf1d26
commit f62540adcc1dd53b66534f6ed7c03b5e5daf1d26
Merge: 4558e6e d1751fb
Author: David Cole 
AuthorDate: Wed Sep 7 15:37:48 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:37:48 2011 -0400

Merge topic 'fix-errors-from-cppcheck-issue-12440'

d1751fb ccmake: Fix off-by-one memory access error
4868921 Fix file() command descriptor leak on error
f47393c CTest: Fix memory leaks on error


---

Summary of changes:
 Source/CTest/cmCTestRunTest.cxx |2 ++
 Source/CTest/cmParsePHPCoverage.cxx |1 +
 Source/CursesDialog/cmCursesLongMessageForm.cxx |2 +-
 Source/cmCTest.cxx  |2 ++
 Source/cmFileCommand.cxx|2 ++
 5 files changed, 8 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.5-416-g4558e6e

2011-09-07 Thread David Cole
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  4558e63a037b8f885cb883a2adc47231d7a0 (commit)
   via  38aab379629a797e959f93b40ba18e63f14d1f64 (commit)
  from  d9ad72542ae60b34d1b0debd3fd4616d9896985f (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=4558e63a037b8f885cb883a2adc47231d7a0
commit 4558e63a037b8f885cb883a2adc47231d7a0
Merge: d9ad725 38aab37
Author: David Cole 
AuthorDate: Wed Sep 7 15:37:37 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:37:37 2011 -0400

Merge topic 'vs-compiler-id'

38aab37 Set CMAKE__COMPILER_ID for VS generators


---

Summary of changes:
 Modules/CMakeDetermineCCompiler.cmake   |5 +
 Modules/CMakeDetermineCXXCompiler.cmake |5 +
 Modules/CMakeDetermineFortranCompiler.cmake |5 +
 3 files changed, 3 insertions(+), 12 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.5-414-gd9ad725

2011-09-07 Thread David Cole
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  d9ad72542ae60b34d1b0debd3fd4616d9896985f (commit)
   via  90efed6ee60fde3a1211672854f7e23affa8b983 (commit)
   via  5c0c635a0947aa44a0e3edf65b73c61d9abced2d (commit)
   via  47a0c7542b07b7db8f466621fff28f47beaad7d0 (commit)
   via  d6e2a063f0a8f07dad88c0a7974391db5de4d6bd (commit)
  from  103ab60dd7314f6a75b02dc65d40a99efedc5391 (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=d9ad72542ae60b34d1b0debd3fd4616d9896985f
commit d9ad72542ae60b34d1b0debd3fd4616d9896985f
Merge: 103ab60 90efed6
Author: David Cole 
AuthorDate: Wed Sep 7 15:37:27 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:37:27 2011 -0400

Merge topic 'fortran-format'

90efed6 Xcode: Honor Fortran_FORMAT target and source file property
5c0c635 Fortran: Add support for free- and fixed-form flags
47a0c75 VS: Map Fortran free- and fixed-format flags to IDE options
d6e2a06 VS: Map per-source Fortran flags to IDE options


---

Summary of changes:
 Modules/Compiler/Absoft-Fortran.cmake|2 +
 Modules/Compiler/Cray-Fortran.cmake  |2 +
 Modules/Compiler/G95-Fortran.cmake   |2 +
 Modules/Compiler/GNU-Fortran.cmake   |3 ++
 Modules/Compiler/HP-Fortran.cmake|2 +
 Modules/Compiler/Intel-Fortran.cmake |2 +
 Modules/Compiler/MIPSpro-Fortran.cmake   |2 +
 Modules/Compiler/NAG-Fortran.cmake   |2 +
 Modules/Compiler/PGI-Fortran.cmake   |3 ++
 Modules/Compiler/PathScale-Fortran.cmake |2 +
 Modules/Compiler/SunPro-Fortran.cmake|2 +
 Modules/Compiler/XL-Fortran.cmake|3 ++
 Source/cmDocumentVariables.cxx   |9 +++
 Source/cmGlobalXCodeGenerator.cxx|   22 +
 Source/cmLocalGenerator.cxx  |   25 +++
 Source/cmLocalGenerator.h|8 ++
 Source/cmLocalVisualStudio7Generator.cxx |   38 -
 Source/cmMakefileTargetGenerator.cxx |   35 +++
 Source/cmMakefileTargetGenerator.h   |2 +
 Source/cmSourceFile.cxx  |9 +++
 Source/cmTarget.cxx  |   12 +
 Tests/Fortran/CMakeLists.txt |2 +
 Tests/FortranOnly/CMakeLists.txt |3 ++
 Tests/FortranOnly/world.f|9 +++
 24 files changed, 194 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.5-409-g103ab60

2011-09-07 Thread David Cole
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  103ab60dd7314f6a75b02dc65d40a99efedc5391 (commit)
   via  57bc42ae91ce373db094e69a6f9900aadbe858fe (commit)
  from  18897d63a5370706312b2b1b8b8900a792ab6056 (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=103ab60dd7314f6a75b02dc65d40a99efedc5391
commit 103ab60dd7314f6a75b02dc65d40a99efedc5391
Merge: 18897d6 57bc42a
Author: David Cole 
AuthorDate: Wed Sep 7 15:37:15 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:37:15 2011 -0400

Merge topic 'fix-zero-check-mistake'

57bc42a Xcode: Do not emit the ZERO_CHECK target more than once


---

Summary of changes:
 Source/cmGlobalXCodeGenerator.cxx |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.5-407-g18897d6

2011-09-07 Thread David Cole
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  18897d63a5370706312b2b1b8b8900a792ab6056 (commit)
   via  0c28b48d9b46415964ddaabf082dbdc059c770c2 (commit)
  from  a239fb6c16ab075fdbd2f306b3f34369f9087d43 (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=18897d63a5370706312b2b1b8b8900a792ab6056
commit 18897d63a5370706312b2b1b8b8900a792ab6056
Merge: a239fb6 0c28b48
Author: David Cole 
AuthorDate: Wed Sep 7 15:37:07 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:37:07 2011 -0400

Merge topic 'save-cache-at-end-of-generate'

0c28b48 CMake: Add SaveCache at the end of successful Generate calls


---

Summary of changes:
 Source/cmake.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.5-405-ga239fb6

2011-09-07 Thread David Cole
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  a239fb6c16ab075fdbd2f306b3f34369f9087d43 (commit)
   via  0cc8f05ce5669f78d458c914b17695c5d53a8d52 (commit)
   via  145de0a058553968b082c6d18c5b7d883ac4637f (commit)
  from  56ce5dec8b9973528ae8b41a77e757c11eff81b1 (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=a239fb6c16ab075fdbd2f306b3f34369f9087d43
commit a239fb6c16ab075fdbd2f306b3f34369f9087d43
Merge: 56ce5de 0cc8f05
Author: David Cole 
AuthorDate: Wed Sep 7 15:36:52 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:36:52 2011 -0400

Merge topic 'FindLAPACK_FindBLAS'

0cc8f05 FindBLAS/LAPACK fixes
145de0a FindBLAS/LAPACK fixes


---

Summary of changes:
 Modules/FindBLAS.cmake   |   23 +++-
 Modules/FindLAPACK.cmake |   68 +
 2 files changed, 54 insertions(+), 37 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.5-402-g56ce5de

2011-09-07 Thread David Cole
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  56ce5dec8b9973528ae8b41a77e757c11eff81b1 (commit)
   via  e01b98ee4d755acc458d69296cedfdf068d074b7 (commit)
  from  5686515b6f9bc91d4a5b78f5a0d322cc5ab62f2b (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=56ce5dec8b9973528ae8b41a77e757c11eff81b1
commit 56ce5dec8b9973528ae8b41a77e757c11eff81b1
Merge: 5686515 e01b98e
Author: David Cole 
AuthorDate: Wed Sep 7 15:36:41 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:36:41 2011 -0400

Merge topic 'asn_java_add_more_java_archives'

e01b98e Modules: Add support for more java archives in add_jar().


---

Summary of changes:
 Modules/UseJava.cmake |5 -
 1 files changed, 4 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.5-400-g5686515

2011-09-07 Thread David Cole
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  5686515b6f9bc91d4a5b78f5a0d322cc5ab62f2b (commit)
   via  1c2508a569da51041db7345e0c9eb41aa6aaefd9 (commit)
   via  d1795002956f8da746077fffb1c2aa0262063db2 (commit)
   via  4fd1e28495e09af154f361602d30a0c5fc998ff4 (commit)
   via  20980ef56a847fec7922983257fd5be467b689bd (commit)
  from  accdb855c293d081580f17ed8521ca20b0dcce0e (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=5686515b6f9bc91d4a5b78f5a0d322cc5ab62f2b
commit 5686515b6f9bc91d4a5b78f5a0d322cc5ab62f2b
Merge: accdb85 1c2508a
Author: David Cole 
AuthorDate: Wed Sep 7 15:36:18 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:36:18 2011 -0400

Merge topic 'FindPythonInterp-Refactoring'

1c2508a Use FIND_PACKAGE_HANDLE_STANDARD_ARGS second mode
d179500 Update documentation of FindPythonInterp.cmake
4fd1e28 Determine python version
20980ef Search for the installed python interpreter first


---

Summary of changes:
 Modules/FindPythonInterp.cmake |   45 ++-
 1 files changed, 30 insertions(+), 15 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.5-395-gaccdb85

2011-09-07 Thread David Cole
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  accdb855c293d081580f17ed8521ca20b0dcce0e (commit)
   via  cd81da30f7477b5653665608f4de5f4a4a0e1a14 (commit)
   via  0ae78b76d544adad4860b66bdd6279fdde07ea34 (commit)
  from  540b25d529a1279f74df0a23140291f9557946db (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=accdb855c293d081580f17ed8521ca20b0dcce0e
commit accdb855c293d081580f17ed8521ca20b0dcce0e
Merge: 540b25d cd81da3
Author: David Cole 
AuthorDate: Wed Sep 7 15:35:54 2011 -0400
Commit: CMake Topic Stage 
CommitDate: Wed Sep 7 15:35:54 2011 -0400

Merge topic 'fix-message-details'

cd81da3 FindPackageMessage: Eliminate new lines using REGEX REPLACE
0ae78b7 FindPackageMessage: Eliminate new lines in cache entries


---

Summary of changes:
 Modules/FindPackageMessage.cmake |1 +
 1 files changed, 1 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