aboutsummaryrefslogtreecommitdiffstats
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:03:32 +0200
commit15a1bd0ab2950671686cea51f4218c8f3d92fad9 (patch)
tree9d132c9710e28a955e891e2e7602fa2982e587b4 /Configure
parentcfb5bc69cf2e5d627dbb4f5c3abf3e49d65419d6 (diff)
downloadopenssl-15a1bd0ab2950671686cea51f4218c8f3d92fad9.tar.gz
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)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index e60130502f..4d74b432eb 100755
--- a/Configure
+++ b/Configure
@@ -514,7 +514,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" ],
"tests" => [ "external-tests" ],
"comp" => [ "zlib" ],