[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Richard Levitte levitte at openssl.org
Mon May 14 12:56:55 UTC 2018


The branch OpenSSL_1_0_2-stable has been updated
       via  fe4fe67139bc1e1abb62035d9eb0992f614bf645 (commit)
      from  4080f4d2fefbb7186171eb620d565e91f56be5b3 (commit)


- Log -----------------------------------------------------------------
commit fe4fe67139bc1e1abb62035d9eb0992f614bf645
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon May 14 05:01:54 2018 +0200

    When configuring 'no-comp', zlib support should be disabled too
    
    Fixes #6241
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/6248)

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

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

diff --git a/Configure b/Configure
index 9c1879e..c7066dc 100755
--- a/Configure
+++ b/Configure
@@ -1173,6 +1173,7 @@ foreach (sort (keys %disabled))
 				$depflags .= " -DOPENSSL_NO_$ALGO";
 				}
 			}
+                        if (/^comp$/)	{ $zlib = 0; }
 		}
 
 	print "\n";


More information about the openssl-commits mailing list