[Cmake-commits] CMake branch, next, updated. v2.8.4-1076-g9feea12

2011-03-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  9feea1200a40f59d70e35034ccc91256e34789cd (commit)
   via  cbb5ae60be15738a4d6db4607466346153c3dbba (commit)
  from  032b2d8e983b834bbfcb46173c40ed2922603a2d (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=9feea1200a40f59d70e35034ccc91256e34789cd
commit 9feea1200a40f59d70e35034ccc91256e34789cd
Merge: 032b2d8 cbb5ae6
Author: Brad King brad.k...@kitware.com
AuthorDate: Thu Mar 3 11:52:25 2011 -0500
Commit: Brad King brad.k...@kitware.com
CommitDate: Thu Mar 3 11:52:25 2011 -0500

Merge branch 'master' into next


---

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


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


[Cmake-commits] CMake branch, next, updated. v2.8.4-1083-g2bdac99

2011-03-03 Thread Alexander Neundorf
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project CMake.

The branch, next has been updated
   via  2bdac994e5f4e9ce8e1810ea80f7fd8a693e6443 (commit)
   via  4139a734fae11d2ece631ff4805556ee2a6de66b (commit)
   via  1f6c6b1cc27fe867fa942210a657d691b8fb575c (commit)
  from  24e676e43f7d322985b2d270b1b068a91879f256 (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=2bdac994e5f4e9ce8e1810ea80f7fd8a693e6443
commit 2bdac994e5f4e9ce8e1810ea80f7fd8a693e6443
Merge: 24e676e 4139a73
Author: Alexander Neundorf neund...@kde.org
AuthorDate: Thu Mar 3 17:05:29 2011 -0500
Commit: CMake Topic Stage kwro...@kitware.com
CommitDate: Thu Mar 3 17:05:29 2011 -0500

Merge topic 'ReworkedAsmSupport' into next

4139a73 -only enable the asm test for the Intel compiler if we are under 
UNIX
1f6c6b1 -use CMAKE_C_FLAGS when generating the assembler file


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4139a734fae11d2ece631ff4805556ee2a6de66b
commit 4139a734fae11d2ece631ff4805556ee2a6de66b
Author: Alex Neundorf neund...@kde.org
AuthorDate: Thu Mar 3 23:02:12 2011 +0100
Commit: Alex Neundorf neund...@kde.org
CommitDate: Thu Mar 3 23:02:12 2011 +0100

-only enable the asm test for the Intel compiler if we are under UNIX

...have to find out how to generate assembler with icl.exe

Alex

diff --git a/Tests/Assembler/CMakeLists.txt b/Tests/Assembler/CMakeLists.txt
index 30485c9..4036cbd 100644
--- a/Tests/Assembler/CMakeLists.txt
+++ b/Tests/Assembler/CMakeLists.txt
@@ -6,10 +6,10 @@ set(SRCS)
 # (at least) the following toolchains can process assembler files directly
 # and also generate assembler files from C:
 if(${CMAKE_GENERATOR} MATCHES Makefile)
-  if(${CMAKE_C_COMPILER_ID} MATCHES ^(GNU|HP|Intel|SunPro|XL)$)
+  if((${CMAKE_C_COMPILER_ID} MATCHES ^(GNU|HP|SunPro|XL)$) OR 
(${CMAKE_C_COMPILER_ID} STREQUAL Intel  AND  UNIX))
 execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_C_FLAGS} -S 
${CMAKE_CURRENT_SOURCE_DIR}/main.c -o ${CMAKE_CURRENT_BINARY_DIR}/main.s)
 set(SRCS ${CMAKE_CURRENT_BINARY_DIR}/main.s)
-  endif(${CMAKE_C_COMPILER_ID} MATCHES ^(GNU|HP|Intel|SunPro|XL)$)
+  endif((${CMAKE_C_COMPILER_ID} MATCHES ^(GNU|HP|SunPro|XL)$) OR 
(${CMAKE_C_COMPILER_ID} STREQUAL Intel  AND  UNIX))
 endif(${CMAKE_GENERATOR} MATCHES Makefile)
 
 

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1f6c6b1cc27fe867fa942210a657d691b8fb575c
commit 1f6c6b1cc27fe867fa942210a657d691b8fb575c
Author: Alex Neundorf neund...@kde.org
AuthorDate: Thu Mar 3 22:56:57 2011 +0100
Commit: Alex Neundorf neund...@kde.org
CommitDate: Thu Mar 3 22:56:57 2011 +0100

-use CMAKE_C_FLAGS when generating the assembler file

Alex

diff --git a/Tests/Assembler/CMakeLists.txt b/Tests/Assembler/CMakeLists.txt
index 32727ed..30485c9 100644
--- a/Tests/Assembler/CMakeLists.txt
+++ b/Tests/Assembler/CMakeLists.txt
@@ -7,7 +7,7 @@ set(SRCS)
 # and also generate assembler files from C:
 if(${CMAKE_GENERATOR} MATCHES Makefile)
   if(${CMAKE_C_COMPILER_ID} MATCHES ^(GNU|HP|Intel|SunPro|XL)$)
-execute_process(COMMAND ${CMAKE_C_COMPILER} -S 
${CMAKE_CURRENT_SOURCE_DIR}/main.c -o ${CMAKE_CURRENT_BINARY_DIR}/main.s)
+execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_C_FLAGS} -S 
${CMAKE_CURRENT_SOURCE_DIR}/main.c -o ${CMAKE_CURRENT_BINARY_DIR}/main.s)
 set(SRCS ${CMAKE_CURRENT_BINARY_DIR}/main.s)
   endif(${CMAKE_C_COMPILER_ID} MATCHES ^(GNU|HP|Intel|SunPro|XL)$)
 endif(${CMAKE_GENERATOR} MATCHES Makefile)

---

Summary of changes:
 Tests/Assembler/CMakeLists.txt |6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


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


[Cmake-commits] CMake branch, master, updated. v2.8.4-125-ged1cd2d

2011-03-03 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  ed1cd2daf6bedbfc9870852184940494bfacec42 (commit)
  from  cbb5ae60be15738a4d6db4607466346153c3dbba (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=ed1cd2daf6bedbfc9870852184940494bfacec42
commit ed1cd2daf6bedbfc9870852184940494bfacec42
Author: KWSys Robot kwro...@kitware.com
AuthorDate: Fri Mar 4 00:01:05 2011 -0500
Commit: KWSys Robot kwro...@kitware.com
CommitDate: Fri Mar 4 00:12:14 2011 -0500

KWSys Nightly Date Stamp

diff --git a/Source/kwsys/kwsysDateStamp.cmake 
b/Source/kwsys/kwsysDateStamp.cmake
index 57395a6..85013bc 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 03)
 
 # KWSys version date day component.  Format is DD.
-SET(KWSYS_DATE_STAMP_DAY   03)
+SET(KWSYS_DATE_STAMP_DAY   04)

---

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