[Cmake-commits] CMake branch, next, updated. v3.8.0-rc1-617-gc3c0a0a
Brad King
brad.king at kitware.com
Tue Feb 28 09:03:26 EST 2017
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 c3c0a0a531937bcccc5b897e8ebaf7c296038304 (commit)
via a333570914ffb9756c94c31afdbc4a8429e8eaa7 (commit)
via e4ac7c2b4f9523330c4811ff03da69e334665f98 (commit)
from 7d1a84228d336288da78fc0efac3a94e651fbdd0 (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=c3c0a0a531937bcccc5b897e8ebaf7c296038304
commit c3c0a0a531937bcccc5b897e8ebaf7c296038304
Merge: 7d1a842 a333570
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Feb 28 09:03:25 2017 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Feb 28 09:03:25 2017 -0500
Merge topic 'libuv-solaris-10' into next
a3335709 Enable libuv on Solaris 10
e4ac7c2b libuv: Compile as C 90 on Solaris 10
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=a333570914ffb9756c94c31afdbc4a8429e8eaa7
commit a333570914ffb9756c94c31afdbc4a8429e8eaa7
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Feb 21 19:45:48 2017 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Feb 28 09:03:12 2017 -0500
Enable libuv on Solaris 10
We've ported our libuv to this platform so we can build it now.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e613224..472c6ab 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -509,12 +509,6 @@ int main(void) { return 0; }
elseif(CMAKE_SYSTEM_NAME STREQUAL "HP-UX")
# Disable until it can be ported.
set(CMAKE_USE_LIBUV 0)
- elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "sparc")
- # Disable until it can be ported.
- set(CMAKE_USE_LIBUV 0)
- elseif(CMAKE_SYSTEM STREQUAL "SunOS-5.10")
- # Disable until it can be ported.
- set(CMAKE_USE_LIBUV 0)
endif()
endif()
if(CMAKE_USE_LIBUV)
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e4ac7c2b4f9523330c4811ff03da69e334665f98
commit e4ac7c2b4f9523330c4811ff03da69e334665f98
Author: Brad King <brad.king at kitware.com>
AuthorDate: Mon Feb 27 09:37:39 2017 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Feb 28 09:03:12 2017 -0500
libuv: Compile as C 90 on Solaris 10
diff --git a/Utilities/cmlibuv/CMakeLists.txt b/Utilities/cmlibuv/CMakeLists.txt
index 1899f83..6632a1e 100644
--- a/Utilities/cmlibuv/CMakeLists.txt
+++ b/Utilities/cmlibuv/CMakeLists.txt
@@ -224,6 +224,9 @@ if(CMAKE_SYSTEM_NAME STREQUAL "SunOS")
list(APPEND uv_defines
_XOPEN_SOURCE=500
)
+ if(CMAKE_C_STANDARD)
+ set(CMAKE_C_STANDARD 90)
+ endif()
else()
list(APPEND uv_defines
_XOPEN_SOURCE=600
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list