From: Richard Levitte Date: Tue, 18 Oct 2016 20:02:30 +0000 (+0200) Subject: Fix config option 'no-deprecated' X-Git-Tag: OpenSSL_1_1_1-pre1~3358 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=12d2ee211b2a4f489787aaf9aa758fe3db128304;p=thirdparty%2Fopenssl.git Fix config option 'no-deprecated' crypto/asn1/asn1_item_list.c needed including dh.h and rsa.h directly. The reason is that they are not included by x509.h when configured 'no-deprecated' Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1741) --- diff --git a/crypto/asn1/asn1_item_list.c b/crypto/asn1/asn1_item_list.c index eaeb34fcc90..9798192f4be 100644 --- a/crypto/asn1/asn1_item_list.c +++ b/crypto/asn1/asn1_item_list.c @@ -12,9 +12,11 @@ #include #include #include +#include #include #include #include +#include #include #include "asn1_item_list.h"