From: Dr. Stephen Henson Date: Wed, 25 Feb 2009 11:55:15 +0000 (+0000) Subject: Submitted by: "Victor B. Wagner" X-Git-Tag: OpenSSL_0_9_8k^2~23 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b2cf7c6452aae1e85ade176bf54ad89bf0263eb2;p=oweals%2Fopenssl.git Submitted by: "Victor B. Wagner" Approved by: steve Recognise "enable-zlib" in mkdef.pl to handle "zlib" option when passed to Configure. --- diff --git a/util/mkdef.pl b/util/mkdef.pl index 1766e99562..96aa51af2e 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -149,7 +149,7 @@ foreach (@ARGV, split(/ /, $options)) } $VMS=1 if $_ eq "VMS"; $OS2=1 if $_ eq "OS2"; - if ($_ eq "zlib" || $_ eq "zlib-dynamic" + if ($_ eq "zlib" || $_ eq "enable-zlib" || $_ eq "zlib-dynamic" || $_ eq "enable-zlib-dynamic") { $zlib = 1; }