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  26b134edb36b913f45a63896a2e4c06993cc0779 (commit)
       via  f0a0e4559c17020101e3e0be18bac54e27a263cb (commit)
      from  7a7da5c4909f2836bbc52d86b02ac14a4c8719fa (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=26b134edb36b913f45a63896a2e4c06993cc0779
commit 26b134edb36b913f45a63896a2e4c06993cc0779
Merge: 7a7da5c f0a0e45
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Fri Aug 26 09:04:21 2016 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Fri Aug 26 09:04:21 2016 -0400

    Merge topic 'import-libuv' into next
    
    f0a0e455 Do not build libuv on HP-UX


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f0a0e4559c17020101e3e0be18bac54e27a263cb
commit f0a0e4559c17020101e3e0be18bac54e27a263cb
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Fri Aug 26 09:02:46 2016 -0400
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Fri Aug 26 09:03:02 2016 -0400

    Do not build libuv on HP-UX
    
    Currently libuv does not support HP-UX.

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 65876d5..aab8416 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -484,6 +484,9 @@ int main(void) { return 0; }
     elseif(CYGWIN)
       # libuv does not support Cygwin
       set(CMAKE_USE_LIBUV 0)
+    elseif(CMAKE_SYSTEM_NAME STREQUAL "HP-UX")
+      # libuv does not support HP-UX
+      set(CMAKE_USE_LIBUV 0)
     elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "sparc")
       # Disable until it can be ported.
       set(CMAKE_USE_LIBUV 0)

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

Summary of changes:
 CMakeLists.txt |    3 +++
 1 file changed, 3 insertions(+)


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

Reply via email to