[Cmake-commits] CMake branch, next, updated. v3.0.1-5074-g7dca291
Chuck Atkins
chuck.atkins at kitware.com
Sat Aug 30 17:15:51 EDT 2014
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 7dca291596e6cca454f6b97830d5611b8c9fb522 (commit)
via 5ea67ee3cbf8d228c485f5605212009c06e9758d (commit)
via 3919fc66e1bf9d417fd1bcf60a3681ac31f125fe (commit)
via 85a6ff0254a2a071cdc9310c118b536070058be8 (commit)
via 8785d0511576fcab8bb37636d8ba986fd82a2143 (commit)
from df0785816ad5d13c2bd3ddc7c733daaf3b01f2be (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 -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7dca291596e6cca454f6b97830d5611b8c9fb522
commit 7dca291596e6cca454f6b97830d5611b8c9fb522
Merge: df07858 5ea67ee
Author: Chuck Atkins <chuck.atkins at kitware.com>
AuthorDate: Sat Aug 30 17:15:50 2014 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sat Aug 30 17:15:50 2014 -0400
Merge topic 'fix-liblzma-build-on-solaris-suncc' into next
5ea67ee3 Added a missing config check for _Bool in liblzma
3919fc66 CMake Nightly Date Stamp
85a6ff02 CMake Nightly Date Stamp
8785d051 CMake Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5ea67ee3cbf8d228c485f5605212009c06e9758d
commit 5ea67ee3cbf8d228c485f5605212009c06e9758d
Author: Chuck Atkins <chuck.atkins at kitware.com>
AuthorDate: Sat Aug 30 16:51:28 2014 -0400
Commit: Chuck Atkins <chuck.atkins at kitware.com>
CommitDate: Sat Aug 30 17:14:06 2014 -0400
Added a missing config check for _Bool in liblzma
This fixes a current build problem for liblzma on Solaris 10, SPARC,
and the Solaris Studio compiler.
diff --git a/Utilities/cmliblzma/CMakeLists.txt b/Utilities/cmliblzma/CMakeLists.txt
index 856e41e..23549c5 100644
--- a/Utilities/cmliblzma/CMakeLists.txt
+++ b/Utilities/cmliblzma/CMakeLists.txt
@@ -26,11 +26,15 @@ CHECK_INCLUDE_FILE(byteswap.h HAVE_BYTESWAP_H)
CHECK_INCLUDE_FILE(inttypes.h HAVE_INTTYPES_H)
CHECK_INCLUDE_FILE(limits.h HAVE_LIMITS_H)
CHECK_INCLUDE_FILE(memory.h HAVE_MEMORY_H)
-CHECK_INCLUDE_FILE(stdbool.h HAVE_STDBOOL_H)
CHECK_INCLUDE_FILE(strings.h HAVE_STRINGS_H)
CHECK_INCLUDE_FILE(string.h HAVE_STRING_H)
CHECK_INCLUDE_FILE(sys/sysctl.h HAVE_SYS_SYSCTL_H)
+CHECK_INCLUDE_FILE(stdbool.h HAVE_STDBOOL_H)
+if(NOT HAVE_STDBOOL_H)
+ CHECK_TYPE_SIZE(_Bool _BOOL)
+endif()
+
CHECK_C_SOURCE_COMPILES (
"#include<byteswap.h>\nint main(void){bswap_16(0);return 0;}"
HAVE_BSWAP_16)
-----------------------------------------------------------------------
Summary of changes:
Source/CMakeVersion.cmake | 2 +-
Utilities/cmliblzma/CMakeLists.txt | 6 +++++-
2 files changed, 6 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list