[openssl-commits] [openssl] OpenSSL_1_1_0-stable update
Richard Levitte
levitte at openssl.org
Tue Sep 12 06:04:56 UTC 2017
The branch OpenSSL_1_1_0-stable has been updated
via 583d8f6342f1a6e01e72cf55bffabf5b90797317 (commit)
from 93687bdde6e91cd31b015cc44e177457a65ce4a9 (commit)
- Log -----------------------------------------------------------------
commit 583d8f6342f1a6e01e72cf55bffabf5b90797317
Author: Richard Levitte <levitte at openssl.org>
Date: Tue Sep 12 07:47:05 2017 +0200
Disable the EGD seeding meachanism when stdio is disabled
crypto/rand/rand_egd.c makes extensive use of stdio functions. When
they are disabled, it makes sense to disable egd as well.
Reviewed-by: Tim Hudson <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4358)
(cherry picked from commit 15a1bd0ab2950671686cea51f4218c8f3d92fad9)
-----------------------------------------------------------------------
Summary of changes:
Configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Configure b/Configure
index 6eb503c..d644963 100755
--- a/Configure
+++ b/Configure
@@ -497,7 +497,7 @@ my @disable_cascades = (
# no-autoalginit is only useful when building non-shared
"autoalginit" => [ "shared", "apps" ],
- "stdio" => [ "apps", "capieng" ],
+ "stdio" => [ "apps", "capieng", "egd" ],
"apps" => [ "tests" ],
"comp" => [ "zlib" ],
sub { !$disabled{"unit-test"} } => [ "heartbeats" ],
More information about the openssl-commits
mailing list