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 "".
The branch, master has been updated via 24201040f2a8e66f11359f29b283831db8550c84 (commit) via 55b8ccb80bee2eaf7932a5bbb7963544d8fc906b (commit) from 6add70a4ff916acb331b961bc230cf946fbe835a (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 ----------------------------------------------------------------- commit 24201040f2a8e66f11359f29b283831db8550c84 Author: Bill Fischofer bill.fischofer@linaro.org Date: Mon Jul 16 17:55:24 2018 -0500
configure: add warning about --without-openssl implications
ODP now supports the --without-openssl configure option to not use OpenSSL as part of building odp-linux. However, omitting OpenSSL will make strong cryptographic support unavailable.
Display the OpenSSL inclusion status as part of configure output and include a warning to be sure the user understands this implication of omitting this support.
Signed-off-by: Bill Fischofer bill.fischofer@linaro.org Reviewed-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org
diff --git a/configure.ac b/configure.ac index 0eacac32..c07b2c9b 100644 --- a/configure.ac +++ b/configure.ac @@ -381,6 +381,7 @@ AC_MSG_RESULT([ includedir: ${includedir} testdir: ${testdir} WITH_ARCH: ${WITH_ARCH} + with_openssl: ${with_openssl}
cc: ${CC} cc version: ${CC_VERSION} @@ -405,3 +406,7 @@ AC_MSG_RESULT([ user_guides: ${user_guides} pcapng: ${have_pcapng} ]) + +AS_IF([test "${with_openssl}" = "no"], + [AC_MSG_WARN([Strong cryptography is not available without OpenSSL])] + )
commit 55b8ccb80bee2eaf7932a5bbb7963544d8fc906b Author: Maxim Uvarov maxim.uvarov@linaro.org Date: Tue Jul 17 16:31:06 2018 +0300
fix code check warning using CC in code
Fix error when code check finds CC inside patch itself and wants to validate it as description note. ERROR: Unrecognized email address: '${CC}'
Signed-off-by: Maxim Uvarov maxim.uvarov@linaro.org Reviewed-by: Bill Fischofer bill.fischofer@linaro.org Reviewed-by: Dmitry Eremin-Solenikov dmitry.ereminsolenikov@linaro.org
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index d5ffd1dd..a0d18972 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -2487,7 +2487,7 @@ sub process { # Check the patch for a signoff: if ($line =~ /^\s*signed-off-by:/i) { $signoff++; - $in_commit_log = 0; + #$in_commit_log = 0; }
# Check if MAINTAINERS is being updated. If so, there's probably no need to @@ -2497,7 +2497,7 @@ sub process { }
# Check signature styles - if (!$in_header_lines && + if (!$in_header_lines && $in_commit_log && $line =~ /^(\s*)([a-z0-9_-]+by:|$signature_tags)(\s*)(.*)/i) { my $space_before = $1; my $sign_off = $2;
-----------------------------------------------------------------------
Summary of changes: configure.ac | 5 +++++ scripts/checkpatch.pl | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-)
hooks/post-receive