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: https://git.librecmc.org/?a=commitdiff_plain;h=12d2ee211b2a4f489787aaf9aa758fe3db128304;p=oweals%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 eaeb34fcc9..9798192f4b 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"