summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-09-12 07:47:05 +0200
committerRichard Levitte <levitte@openssl.org>2017-09-12 08:04:04 +0200
commit583d8f6342f1a6e01e72cf55bffabf5b90797317 (patch)
tree2465a4bc47ca49d06c93bc155c6f641dc102de6a /Configure
parent93687bdde6e91cd31b015cc44e177457a65ce4a9 (diff)
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@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4358) (cherry picked from commit 15a1bd0ab2950671686cea51f4218c8f3d92fad9)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 6eb503c2a5..d6449636f3 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" ],