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  9a429125465a38a75d23b85f6e1f55a9cb5e83fb (commit)
       via  8c94b5b004606dc021e153e0a4a824a3d9db6750 (commit)
      from  031a9c4558879f4f5b5b4f5122623a78066e4638 (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=9a429125465a38a75d23b85f6e1f55a9cb5e83fb
commit 9a429125465a38a75d23b85f6e1f55a9cb5e83fb
Merge: 031a9c4 8c94b5b
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Fri Aug 26 08:34:06 2016 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Fri Aug 26 08:34:06 2016 -0400

    Merge topic 'import-libuv' into next
    
    8c94b5b0 Do not build libuv on Cygwin


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8c94b5b004606dc021e153e0a4a824a3d9db6750
commit 8c94b5b004606dc021e153e0a4a824a3d9db6750
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Fri Aug 26 08:17:42 2016 -0400
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Fri Aug 26 08:17:42 2016 -0400

    Do not build libuv on Cygwin
    
    Currently libuv does not support Cygwin:
    
      https://github.com/libuv/libuv/issues/832
    
    in part due to lack of pthread APIs:
    
      https://cygwin.com/cygwin-api/std-notimpl.html

diff --git a/CMakeLists.txt b/CMakeLists.txt
index b62f6a5..9176049 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -481,6 +481,9 @@ int main(void) { return 0; }
       if(NOT HAVE_CoreServices_OS_X_10_5)
         set(CMAKE_USE_LIBUV 0)
       endif()
+    elseif(CYGWIN)
+      # libuv does not support Cygwin
+      set(CMAKE_USE_LIBUV 0)
     endif()
   endif()
   if(CMAKE_USE_LIBUV)

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

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