X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;f=Configure;h=0a33fc2e41cf7afe534084af7ccd40d576518cf2;hb=6eabcc839f381bf07d004869ca8fe855edbb4846;hp=d4f67aba4361860062b9add0a59962f19ed82d50;hpb=29df3061b3cba1e343a76e69e47149f1dc526361;p=openssl.git diff --git a/Configure b/Configure index d4f67aba43..0a33fc2e41 100755 --- a/Configure +++ b/Configure @@ -437,7 +437,7 @@ my @disable_cascades = ( # no-autoalginit is only useful when building non-shared "autoalginit" => [ "shared", "apps" ], - "stdio" => [ "apps" ], + "stdio" => [ "apps", "capieng" ], "apps" => [ "tests" ], "comp" => [ "zlib" ], sub { !$disabled{"unit-test"} } => [ "heartbeats" ], @@ -725,6 +725,13 @@ foreach (@argvcopy) { $libs.=$_." "; } + elsif (/^-static$/) + { + $libs.=$_." "; + $disabled{"pic"} = "forced"; + $disabled{"shared"} = "forced"; + $disabled{"threads"} = "forced"; + } elsif (/^-D(.*)$/) { push @user_defines, $1;