[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Tue Sep 12 06:03:37 UTC 2017


The branch master has been updated
       via  15a1bd0ab2950671686cea51f4218c8f3d92fad9 (commit)
      from  cfb5bc69cf2e5d627dbb4f5c3abf3e49d65419d6 (commit)


- Log -----------------------------------------------------------------
commit 15a1bd0ab2950671686cea51f4218c8f3d92fad9
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)

-----------------------------------------------------------------------

Summary of changes:
 Configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configure b/Configure
index e601305..4d74b43 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" ],


More information about the openssl-commits mailing list