From 12d2ee211b2a4f489787aaf9aa758fe3db128304 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 18 Oct 2016 22:02:30 +0200 Subject: [PATCH] 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) --- crypto/asn1/asn1_item_list.c | 2 ++ 1 file changed, 2 insertions(+) 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" -- 2.25.1