summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorTodd Short <tshort@akamai.com>2022-08-17 17:36:27 -0400
committerTodd Short <todd.short@me.com>2022-10-18 09:30:21 -0400
commit59d21298df9176b64b41cc8583c7024f7f5895d4 (patch)
tree6819e56eb1a1916dd85950bb210c27b9904e9859 /Configure
parentcaf9317d7d75213990014e07048384be15688889 (diff)
downloadopenssl-new-59d21298df9176b64b41cc8583c7024f7f5895d4.tar.gz
Convert ZLIB defines to OPENSSL_NO_ZLIB
Use the normal OPENSSL_NO_ prefix to enable/disable ZLIB Make `BIO_f_zlib()` always available. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18186)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure b/Configure
index 3deeb030a2..d5233103fc 100755
--- a/Configure
+++ b/Configure
@@ -1845,7 +1845,7 @@ foreach my $what (sort keys %disabled) {
if (!grep { $what eq $_ } ( 'buildtest-c++', 'fips', 'threads', 'shared',
'module', 'pic', 'dynamic-engine', 'makedepend',
- 'zlib-dynamic', 'zlib', 'sse2', 'legacy' )) {
+ 'sse2', 'legacy' )) {
(my $WHAT = uc $what) =~ s|-|_|g;
my $skipdir = $what;