[Cmake-commits] CMake branch, next, updated. v3.6.2-1898-ge238ac6

Brad King brad.king at kitware.com
Fri Sep 9 11:12:40 EDT 2016


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  e238ac6f443823896be5c95435e253971f152722 (commit)
       via  c6d83a15d8ac11cba1388e853a9b321ca4e9c87a (commit)
      from  c0f629593ed05793666c23e1478d142bd6577d25 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e238ac6f443823896be5c95435e253971f152722
commit e238ac6f443823896be5c95435e253971f152722
Merge: c0f6295 c6d83a1
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Sep 9 11:12:39 2016 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Sep 9 11:12:39 2016 -0400

    Merge topic 'libuv-link-kvm' into next
    
    c6d83a15 libuv: Link with kvm on NetBSD and OpenBSD


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c6d83a15d8ac11cba1388e853a9b321ca4e9c87a
commit c6d83a15d8ac11cba1388e853a9b321ca4e9c87a
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Fri Sep 9 11:11:40 2016 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Fri Sep 9 11:11:40 2016 -0400

    libuv: Link with kvm on NetBSD and OpenBSD
    
    We include the `kvm.h` header on these platforms and call kvm APIs.
    Link with the library to ensure they are available.

diff --git a/Utilities/cmlibuv/CMakeLists.txt b/Utilities/cmlibuv/CMakeLists.txt
index 8837be6..1b384b5 100644
--- a/Utilities/cmlibuv/CMakeLists.txt
+++ b/Utilities/cmlibuv/CMakeLists.txt
@@ -181,6 +181,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
 endif()
 
 if(CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
+  list(APPEND uv_libraries
+    kvm
+    )
   list(APPEND uv_headers
     include/uv-bsd.h
     )
@@ -191,6 +194,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "NetBSD")
 endif()
 
 if(CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
+  list(APPEND uv_libraries
+    kvm
+    )
   list(APPEND uv_headers
     include/uv-bsd.h
     )

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

Summary of changes:
 Utilities/cmlibuv/CMakeLists.txt |    6 ++++++
 1 file changed, 6 insertions(+)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list