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  282061384a9cfea31b38f7ef83c6f96491f1c33d (commit)
       via  50460ea9de40d7c8ef631bbdb5d44b9aa4c14718 (commit)
      from  faeaf44144bb727ca68e186dd4f25135a594abf2 (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=282061384a9cfea31b38f7ef83c6f96491f1c33d
commit 282061384a9cfea31b38f7ef83c6f96491f1c33d
Merge: faeaf44 50460ea
Author:     Stephen Kelly <steve...@gmail.com>
AuthorDate: Wed Aug 10 15:54:20 2011 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Wed Aug 10 15:54:20 2011 -0400

    Merge topic 'generate_export_header' into next
    
    50460ea Fix off-by-not in test for Borland.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=50460ea9de40d7c8ef631bbdb5d44b9aa4c14718
commit 50460ea9de40d7c8ef631bbdb5d44b9aa4c14718
Author:     Stephen Kelly <steve...@gmail.com>
AuthorDate: Wed Aug 10 21:53:58 2011 +0200
Commit:     Stephen Kelly <steve...@gmail.com>
CommitDate: Wed Aug 10 21:53:58 2011 +0200

    Fix off-by-not in test for Borland.

diff --git a/Modules/GenerateExportHeader.cmake 
b/Modules/GenerateExportHeader.cmake
index 1578365..5ecb807 100644
--- a/Modules/GenerateExportHeader.cmake
+++ b/Modules/GenerateExportHeader.cmake
@@ -149,7 +149,7 @@ macro(_DO_SET_MACRO_VALUES TARGET_LIBRARY)
   set(DEFINE_NO_EXPORT)
 
   if(WIN32)
-    if (${CMAKE_CXX_COMPILER_ID} MATCHES Borland)
+    if (NOT ${CMAKE_CXX_COMPILER_ID} MATCHES Borland)
       set(DEFINE_DEPRECATED "__declspec(deprecated)")
     endif()
   else()

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

Summary of changes:
 Modules/GenerateExportHeader.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

Reply via email to