X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=blobdiff_plain;f=Configure;h=4415e1d6bccdea55c700182f8a393e5309f7e784;hp=92c9d4e4d98eef72c5f823a98f372af4593bc6d7;hb=f9e57a28886fe29bc49d3c89a1cc4e53ee4896d6;hpb=1f86b8228b49938e0e368f361202570d7eab5806 diff --git a/Configure b/Configure index 92c9d4e4d9..4415e1d6bc 100755 --- a/Configure +++ b/Configure @@ -350,6 +350,7 @@ my @disablables = ( "dgram", "dh", "dsa", + "dso", "dtls", "dynamic-engine", "ec", @@ -442,7 +443,6 @@ my %deprecated_disablables = ( "hw-padlock" => "padlockeng", "ripemd" => "rmd160", "ui" => "ui-console", - "dso" => undef, "heartbeats" => undef, ); @@ -510,6 +510,7 @@ my @disable_cascades = ( # (note that even with shared libraries, both the app and dynamic engines # must be linked with the same library) "shared" => [ "dynamic-engine", "uplink" ], + "dso" => [ "dynamic-engine", "module" ], # Other modules don't necessarily have to link with libcrypto, so shared # libraries do not have to be a condition to produce those. @@ -1239,7 +1240,7 @@ foreach my $what (sort keys %disabled) { $skipdir{engines} = $what if $what eq 'engine'; $skipdir{"crypto/$skipdir"} = $what - unless $what eq 'async' || $what eq 'err'; + unless $what eq 'async' || $what eq 'err' || $what eq 'dso'; } }