Ensure mk1mf.pl is aware of no-weak-ssl-ciphers option
Update mk1mf.pl to properly handle no-weak-ssl-ciphers Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
parent
248808c840
commit
08d0ff54d0
1 changed files with 2 additions and 0 deletions
|
@ -290,6 +290,7 @@ $cflags.=" -DOPENSSL_NO_HW" if $no_hw;
|
||||||
$cflags.=" -DOPENSSL_FIPS" if $fips;
|
$cflags.=" -DOPENSSL_FIPS" if $fips;
|
||||||
$cflags.=" -DOPENSSL_NO_JPAKE" if $no_jpake;
|
$cflags.=" -DOPENSSL_NO_JPAKE" if $no_jpake;
|
||||||
$cflags.=" -DOPENSSL_NO_EC2M" if $no_ec2m;
|
$cflags.=" -DOPENSSL_NO_EC2M" if $no_ec2m;
|
||||||
|
$cflags.=" -DOPENSSL_NO_WEAK_SSL_CIPHERS" if $no_weak_ssl;
|
||||||
$cflags.= " -DZLIB" if $zlib_opt;
|
$cflags.= " -DZLIB" if $zlib_opt;
|
||||||
$cflags.= " -DZLIB_SHARED" if $zlib_opt == 2;
|
$cflags.= " -DZLIB_SHARED" if $zlib_opt == 2;
|
||||||
|
|
||||||
|
@ -1205,6 +1206,7 @@ sub read_options
|
||||||
"no-jpake" => \$no_jpake,
|
"no-jpake" => \$no_jpake,
|
||||||
"no-ec2m" => \$no_ec2m,
|
"no-ec2m" => \$no_ec2m,
|
||||||
"no-ec_nistp_64_gcc_128" => 0,
|
"no-ec_nistp_64_gcc_128" => 0,
|
||||||
|
"no-weak-ssl-ciphers" => \$no_weak_ssl,
|
||||||
"no-err" => \$no_err,
|
"no-err" => \$no_err,
|
||||||
"no-sock" => \$no_sock,
|
"no-sock" => \$no_sock,
|
||||||
"no-krb5" => \$no_krb5,
|
"no-krb5" => \$no_krb5,
|
||||||
|
|
Loading…
Reference in a new issue