[Cmake-commits] CMake branch, next, updated. v2.8.6-2198-g978acdb

David Cole david.cole at kitware.com
Tue Dec 13 16:44:23 EST 2011


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  978acdb83c6f78ba35aca2c6690b123f67d90764 (commit)
       via  b3c42cb0123c7d21b6a23b1b7517cbb27d55df76 (commit)
       via  f603cf2d36bced4fbb191354980849f4c888fb8e (commit)
       via  3c101429a4e563f4c711cae84317806284784eb6 (commit)
      from  794eb2c9b43c40df4a1c53a30f4d995b49b886c5 (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=978acdb83c6f78ba35aca2c6690b123f67d90764
commit 978acdb83c6f78ba35aca2c6690b123f67d90764
Merge: 794eb2c b3c42cb
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Tue Dec 13 16:44:22 2011 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Dec 13 16:44:22 2011 -0500

    Merge topic 'fix-lapack-issues' into next
    
    b3c42cb FindLAPACK: List thread libs to avoid link errors (#12625)
    f603cf2 FindLAPACK: Correct CMAKE_FIND_LIBRARY_SUFFIXES spelling (#12624)
    3c10142 KWSys Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b3c42cb0123c7d21b6a23b1b7517cbb27d55df76
commit b3c42cb0123c7d21b6a23b1b7517cbb27d55df76
Author:     Tim Gallagher <tim.gallagher at gatech.edu>
AuthorDate: Tue Dec 13 13:33:31 2011 -0500
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Tue Dec 13 16:26:33 2011 -0500

    FindLAPACK: List thread libs to avoid link errors (#12625)

diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake
index 153c8e8..884266f 100644
--- a/Modules/FindLAPACK.cmake
+++ b/Modules/FindLAPACK.cmake
@@ -123,7 +123,7 @@ if(_libraries_work)
 endif(_libraries_work)
 
  if(_libraries_work)
-   set(${LIBRARIES} ${${LIBRARIES}} ${_blas})
+   set(${LIBRARIES} ${${LIBRARIES}} ${_blas} ${_threads})
  else(_libraries_work)
     set(${LIBRARIES} FALSE)
  endif(_libraries_work)

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f603cf2d36bced4fbb191354980849f4c888fb8e
commit f603cf2d36bced4fbb191354980849f4c888fb8e
Author:     Tim Gallagher <tim.gallagher at gatech.edu>
AuthorDate: Tue Dec 13 12:08:59 2011 -0500
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Tue Dec 13 16:23:54 2011 -0500

    FindLAPACK: Correct CMAKE_FIND_LIBRARY_SUFFIXES spelling (#12624)

diff --git a/Modules/FindLAPACK.cmake b/Modules/FindLAPACK.cmake
index f88eed0..153c8e8 100644
--- a/Modules/FindLAPACK.cmake
+++ b/Modules/FindLAPACK.cmake
@@ -80,17 +80,17 @@ foreach(_library ${_list})
   if(_libraries_work)
     if (BLA_STATIC)
       if (WIN32)
-        set(CMAKE_FIND_LIBRARY_SUFFIXES .lib ${CMAKE_FIND_LIBRRAY_SUFFIXES})
+        set(CMAKE_FIND_LIBRARY_SUFFIXES .lib ${CMAKE_FIND_LIBRARY_SUFFIXES})
       endif ( WIN32 )
       if (APPLE)
-        set(CMAKE_FIND_LIBRARY_SUFFIXES .lib ${CMAKE_FIND_LIBRRAY_SUFFIXES})
+        set(CMAKE_FIND_LIBRARY_SUFFIXES .lib ${CMAKE_FIND_LIBRARY_SUFFIXES})
       else (APPLE)
-        set(CMAKE_FIND_LIBRARY_SUFFIXES .a ${CMAKE_FIND_LIBRRAY_SUFFIXES})
+        set(CMAKE_FIND_LIBRARY_SUFFIXES .a ${CMAKE_FIND_LIBRARY_SUFFIXES})
       endif (APPLE)
     else (BLA_STATIC)
 			if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
         # for ubuntu's libblas3gf and liblapack3gf packages
-        set(CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRRAY_SUFFIXES} .so.3gf)
+        set(CMAKE_FIND_LIBRARY_SUFFIXES ${CMAKE_FIND_LIBRARY_SUFFIXES} .so.3gf)
       endif ()
     endif (BLA_STATIC)
     find_library(${_prefix}_${_library}_LIBRARY

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list