[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-2255-g082b5dc
Rolf Eike Beer
eike at sf-mail.de
Sat Apr 12 18:04:12 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 082b5dc809cf8cf590f7b59450a7339afe7381f5 (commit)
via 0b4d2c79d65cf93b7ea229bd79dc7f887e0530a2 (commit)
via 973b3e7dcdd7e21103e330e1c82be897ce2bc322 (commit)
from 9e9177e30783ed3da0c96b5973ab4219b50b1f41 (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=082b5dc809cf8cf590f7b59450a7339afe7381f5
commit 082b5dc809cf8cf590f7b59450a7339afe7381f5
Merge: 9e9177e 0b4d2c7
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Sat Apr 12 18:04:11 2014 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sat Apr 12 18:04:11 2014 -0400
Merge topic 'openbsd-warnings' into next
0b4d2c79 suppress warnings about rand() and srand() on OpenBSD
973b3e7d CMake Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0b4d2c79d65cf93b7ea229bd79dc7f887e0530a2
commit 0b4d2c79d65cf93b7ea229bd79dc7f887e0530a2
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Sat Apr 12 23:58:19 2014 +0200
Commit: Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Sat Apr 12 23:58:19 2014 +0200
suppress warnings about rand() and srand() on OpenBSD
We don't do crypto here, so a "poor" random doesn't matter. In fact we have API
to allow people to get a repeatable sequence by setting a specific seed.
diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in
index 3c589b4..3f05ef0 100644
--- a/CTestCustom.cmake.in
+++ b/CTestCustom.cmake.in
@@ -55,6 +55,8 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION
"warning.*This version of Mac OS X is unsupported"
"clang.*: warning: argument unused during compilation: .-g"
"note: in expansion of macro" # diagnostic context note
+ "cm(StringCommand|CTestTestHandler)\.cxx.*warning.*rand.*isn.*t random" # we do not do crypto
+ "cm(StringCommand|CTestTestHandler)\.cxx.*warning.*srand.*seed choices are.*poor" # we do not do crypto
# Ignore clang's summary warning, assuming prior text has matched some
# other warning expression:
-----------------------------------------------------------------------
Summary of changes:
CTestCustom.cmake.in | 2 ++
Source/CMakeVersion.cmake | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list