X-Git-Url: https://git.openssl.org/gitweb/?a=blobdiff_plain;f=Configure;h=dfad3fe7a5aac3361c1629c4a7d5a2deba409778;hb=HEAD;hp=cef9e8c3e6662ea73eac2cfd81a47490090bc853;hpb=693071c088c0a93d84d3327a2477ab456fd8ca8e;p=openssl.git diff --git a/Configure b/Configure index cef9e8c3e6..c15f5b2fff 100755 --- a/Configure +++ b/Configure @@ -492,6 +492,7 @@ my @disablables = ( "ocsp", "padlockeng", "pic", + "pie", "pinshared", "poly1305", "posix-io", @@ -528,6 +529,7 @@ my @disablables = ( "thread-pool", "threads", "tls", + "integrity-only-ciphers", "trace", "ts", "ubsan", @@ -584,6 +586,7 @@ our %disabled = ( # "what" => "comment" "external-tests" => "default", "fuzz-afl" => "default", "fuzz-libfuzzer" => "default", + "pie" => "default", "ktls" => "default", "md2" => "default", "msan" => "default", @@ -813,7 +816,7 @@ my %cmdvars = (); # Stores FOO='blah' type arguments my %unsupported_options = (); my %deprecated_options = (); # If you change this, update apps/version.c -my @known_seed_sources = qw(getrandom devrandom os egd none rdcpu librandom); +my @known_seed_sources = qw(getrandom devrandom os egd none rdcpu); my @seed_sources = (); while (@argvcopy) { @@ -943,6 +946,10 @@ while (@argvcopy) { delete $disabled{"brotli"}; } + elsif ($1 eq "pie") + { + delete $disabled{"pie"}; + } elsif ($1 eq "zstd-dynamic") { delete $disabled{"zstd"};