Don't build dynamic engines unless configured "shared"
Experience has shown that dynamic engines with their own copy of libcrypto is problematic, so we disable that possibility. Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
parent
987dbc7fbf
commit
0069806128
1 changed files with 2 additions and 1 deletions
|
@ -396,7 +396,8 @@ my @disable_cascades = (
|
|||
"dso" => [ "dynamic-engine" ],
|
||||
|
||||
# Without position independent code, there can be no shared libraries or DSOs
|
||||
"pic" => [ "shared", "dynamic-engine" ],
|
||||
"pic" => [ "shared" ],
|
||||
"shared" => [ "dynamic-engine" ],
|
||||
);
|
||||
|
||||
# Avoid protocol support holes. Also disable all versions below N, if version
|
||||
|
|
Loading…
Reference in a new issue