[Cmake-commits] CMake branch, next, updated. v3.0.1-5103-gdd3f110
Brad King
brad.king at kitware.com
Tue Sep 2 10:33:31 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 dd3f11088ac3975b294b80ace18b27018d173e7a (commit)
via c16d8c7f77d39415d542c195568064a24560979f (commit)
from 97b66df2772038899a4e971736d52a1362250a2f (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=dd3f11088ac3975b294b80ace18b27018d173e7a
commit dd3f11088ac3975b294b80ace18b27018d173e7a
Merge: 97b66df c16d8c7
Author: Brad King <brad.king at kitware.com>
AuthorDate: Tue Sep 2 10:33:31 2014 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Sep 2 10:33:31 2014 -0400
Merge topic 'fix-liblzma-build-on-solaris-suncc' into next
c16d8c7f liblzma: Added a missing config check for _Bool
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c16d8c7f77d39415d542c195568064a24560979f
commit c16d8c7f77d39415d542c195568064a24560979f
Author: Chuck Atkins <chuck.atkins at kitware.com>
AuthorDate: Sat Aug 30 16:51:28 2014 -0400
Commit: Brad King <brad.king at kitware.com>
CommitDate: Tue Sep 2 10:34:47 2014 -0400
liblzma: Added a missing config check for _Bool
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:
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list