1From b1b9980853b1083f0c8b9f628f8b4c3a484d4f91 Mon Sep 17 00:00:00 2001
2From: Jackie Huang <jackie.huang@windriver.com>
3Date: Thu, 22 Jun 2017 10:25:08 +0800
4Subject: [PATCH] net-snmp: fix for --disable-des
5
6Include des.h only if it's found in openssl so that
7the --disable-des works correctly.
8
9Upstream-Status: Submitted [net-snmp-coders@lists.sourceforge.net]
10
11Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
12
13---
14 snmplib/scapi.c | 2 ++
15 1 file changed, 2 insertions(+)
16
17diff --git a/snmplib/scapi.c b/snmplib/scapi.c
18index 54fdd5c..0f7e931 100644
19--- a/snmplib/scapi.c
20+++ b/snmplib/scapi.c
21@@ -85,7 +85,9 @@ netsnmp_feature_child_of(usm_scapi, usm_support);
22 #include <openssl/hmac.h>
23 #include <openssl/evp.h>
24 #include <openssl/rand.h>
25+#ifdef HAVE_OPENSSL_DES_H
26 #include <openssl/des.h>
27+#endif
28 #ifdef HAVE_AES
29 #include <openssl/aes.h>
30 #endif
31