blob: 4cd8fd1e4676ceb10d8f08f462440ee99807f6c9 [file] [log] [blame]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08001From 068952c0e0cdda5a91250b91c5fcc9b85b43daab Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: 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>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080012
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013---
14 snmplib/scapi.c | 2 ++
15 1 file changed, 2 insertions(+)
16
17diff --git a/snmplib/scapi.c b/snmplib/scapi.c
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080018index 8ad1d70..43caddf 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019--- a/snmplib/scapi.c
20+++ b/snmplib/scapi.c
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080021@@ -84,7 +84,9 @@ netsnmp_feature_child_of(usm_scapi, usm_support)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050022 #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