From fe4fe67139bc1e1abb62035d9eb0992f614bf645 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 14 May 2018 05:01:54 +0200 Subject: [PATCH] When configuring 'no-comp', zlib support should be disabled too Fixes #6241 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/6248) --- Configure | 1 + 1 file changed, 1 insertion(+) diff --git a/Configure b/Configure index 9c1879eaf9..c7066dc97c 100755 --- a/Configure +++ b/Configure @@ -1173,6 +1173,7 @@ foreach (sort (keys %disabled)) $depflags .= " -DOPENSSL_NO_$ALGO"; } } + if (/^comp$/) { $zlib = 0; } } print "\n"; -- 2.25.1