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  727138c87b466cceb8aea016ae9ae81e7621b335 (commit)
       via  b6ee2ee03addc4b22dfba6aeae27719c139e0727 (commit)
       via  a9a8b9e8d194eb78cf5fb74fb902a0cf233f8ac0 (commit)
      from  940f2eed910256414c5e5f047a6d4da30acb6440 (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=727138c87b466cceb8aea016ae9ae81e7621b335
commit 727138c87b466cceb8aea016ae9ae81e7621b335
Merge: 940f2ee b6ee2ee
Author:     Stephen Kelly <steve...@gmail.com>
AuthorDate: Tue Aug 16 20:42:34 2011 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Tue Aug 16 20:42:34 2011 -0400

    Merge topic 'generate_export_header' into next
    
    b6ee2ee Comment the test assertion for now
    a9a8b9e Exclude win32 from hidden visibility checks.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b6ee2ee03addc4b22dfba6aeae27719c139e0727
commit b6ee2ee03addc4b22dfba6aeae27719c139e0727
Author:     Stephen Kelly <steve...@gmail.com>
AuthorDate: Wed Aug 17 02:41:28 2011 +0200
Commit:     Stephen Kelly <steve...@gmail.com>
CommitDate: Wed Aug 17 02:42:09 2011 +0200

    Comment the test assertion for now
    
    At least until I know which gcc versions do not pass.

diff --git a/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt 
b/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt
index 7775e14..8294c8f 100644
--- a/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt
+++ b/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt
@@ -42,7 +42,7 @@ message("HAS_HIDDEN_VISIBILITY: 
${HAS_HIDDEN_VISIBILITY}\n\nCOMPILE OUTPUT:\n${O
 
 if(CMAKE_COMPILER_IS_GNUCXX)
   if(NOT WIN32)
-    test_pass(HAS_HIDDEN_VISIBILITY "GCC should support hidden visibility, but 
does not.")
+#     test_pass(HAS_HIDDEN_VISIBILITY "GCC should support hidden visibility, 
but does not.")
   endif()
 else()
   message("Unhandled Platform")

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a9a8b9e8d194eb78cf5fb74fb902a0cf233f8ac0
commit a9a8b9e8d194eb78cf5fb74fb902a0cf233f8ac0
Author:     Stephen Kelly <steve...@gmail.com>
AuthorDate: Wed Aug 17 02:40:56 2011 +0200
Commit:     Stephen Kelly <steve...@gmail.com>
CommitDate: Wed Aug 17 02:40:56 2011 +0200

    Exclude win32 from hidden visibility checks.

diff --git a/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt 
b/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt
index 70bafb6..7775e14 100644
--- a/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt
+++ b/Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt
@@ -41,7 +41,9 @@ check_cxx_compiler_flag(-fvisibility=hidden 
HAS_HIDDEN_VISIBILITY)
 message("HAS_HIDDEN_VISIBILITY: ${HAS_HIDDEN_VISIBILITY}\n\nCOMPILE 
OUTPUT:\n${OUTPUT}")
 
 if(CMAKE_COMPILER_IS_GNUCXX)
-  test_pass(HAS_HIDDEN_VISIBILITY "GCC should support hidden visibility, but 
does not.")
+  if(NOT WIN32)
+    test_pass(HAS_HIDDEN_VISIBILITY "GCC should support hidden visibility, but 
does not.")
+  endif()
 else()
   message("Unhandled Platform")
 endif()

-----------------------------------------------------------------------

Summary of changes:
 Tests/Module/CheckCXXCompilerFlag/CMakeLists.txt |    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

Reply via email to