From: Matt Caswell Date: Sun, 22 Mar 2015 15:58:00 +0000 (+0000) Subject: Fix no-ec with no-ec2m X-Git-Tag: OpenSSL_1_0_2b~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b5dc90121c74968cd789cba05829fbf3499f4b6d;p=openssl Fix no-ec with no-ec2m Fix builds config'd with no-ec and no-ec2m. Technically this combination is redundant - but the fix is straight forward. Fix from OpenWrt. Reviewed-by: Dr. Stephen Henson --- diff --git a/ssl/t1_lib.c b/ssl/t1_lib.c index d85d26e596..a59fe82e1f 100644 --- a/ssl/t1_lib.c +++ b/ssl/t1_lib.c @@ -113,9 +113,11 @@ #include #include #include +#ifndef OPENSSL_NO_EC #ifdef OPENSSL_NO_EC2M # include #endif +#endif #include #include #include "ssl_locl.h"