[Cmake-commits] CMake branch, next, updated. v3.6.1-1480-g7a7da5c
Brad King
brad.king at kitware.com
Fri Aug 26 08:59:57 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 7a7da5c4909f2836bbc52d86b02ac14a4c8719fa (commit)
via a9d5f76bc76295966223211ca15d07e3b91a3387 (commit)
from 7159a29e50c3ce63b70994e6bbc915f38bb09851 (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=7a7da5c4909f2836bbc52d86b02ac14a4c8719fa
commit 7a7da5c4909f2836bbc52d86b02ac14a4c8719fa
Merge: 7159a29 a9d5f76
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Aug 26 08:59:56 2016 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Aug 26 08:59:56 2016 -0400
Merge topic 'import-libuv' into next
a9d5f76b Do not build libuv on SPARC
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a9d5f76bc76295966223211ca15d07e3b91a3387
commit a9d5f76bc76295966223211ca15d07e3b91a3387
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Aug 26 08:57:40 2016 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Fri Aug 26 08:57:40 2016 -0400
Do not build libuv on SPARC
Some work may be needed to port to SPARC with Solaris and Linux.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9176049..65876d5 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_PROCESSOR MATCHES "sparc")
+ # Disable until it can be ported.
+ 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
More information about the Cmake-commits
mailing list