diff options
author | Matt Caswell <matt@openssl.org> | 2016-12-28 16:32:39 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-12-29 14:32:54 +0100 |
commit | 3cf96e88b78df21bc2ac09a793d1c66ce7912760 (patch) | |
tree | cbc731079471adf5852d41b5c4713dbd525ab5be /Configure | |
parent | Fix extension for various no- options (diff) | |
download | openssl-3cf96e88b78df21bc2ac09a793d1c66ce7912760.tar.xz openssl-3cf96e88b78df21bc2ac09a793d1c66ce7912760.zip |
Fix compilation with no-ec
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2153)
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -507,7 +507,8 @@ my @disable_cascades = ( "stdio" => [ "apps", "capieng" ], "apps" => [ "tests" ], - "comp" => [ "zlib" ], + "comp" => [ "zlib" ], + "ec" => [ "tls1_3" ], sub { !$disabled{"unit-test"} } => [ "heartbeats" ], sub { !$disabled{"msan"} } => [ "asm" ], |