Skip to content

Commit

Permalink
Disable ec2m when ec is disabled
Browse files Browse the repository at this point in the history
Fix compilation failure with no-ec.
  • Loading branch information
dongbeiouba committed Jan 6, 2025
1 parent 20d68fe commit e39abc8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Configure
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,7 @@ my @disable_cascades = (
"ssl3-method" => [ "ssl3" ],
"zlib" => [ "zlib-dynamic" ],
"des" => [ "mdc2" ],
"ec" => [ "ecdsa", "ecdh" ],
"ec" => [ "ec2m", "ecdsa", "ecdh", "sm2", "tls1_3" ],

"dgram" => [ "dtls", "sctp" ],
"sock" => [ "dgram" ],
Expand All @@ -549,7 +549,6 @@ my @disable_cascades = (
"apps" => [ "tests" ],
"tests" => [ "external-tests" ],
"comp" => [ "zlib" ],
"ec" => [ "tls1_3", "sm2" ],
"sm3" => [ "sm2" ],
sub { !$disabled{"unit-test"} } => [ "heartbeats" ],

Expand Down

0 comments on commit e39abc8

Please sign in to comment.