aboutsummaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-12-28 15:32:39 +0000
committerMatt Caswell <matt@openssl.org>2016-12-29 13:32:54 +0000
commit3cf96e88b78df21bc2ac09a793d1c66ce7912760 (patch)
treecbc731079471adf5852d41b5c4713dbd525ab5be /Configure
parent0785274ca53bbc20774186df6081dc75258db9bb (diff)
downloadopenssl-3cf96e88b78df21bc2ac09a793d1c66ce7912760.tar.gz
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-xConfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configure b/Configure
index 896d4d4545..b2e2e47872 100755
--- a/Configure
+++ b/Configure
@@ -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" ],