coova-chilli: fix compile error with cyassl
Signed-off-by: Jaehoon You <teslamint@gmail.com>
This commit is contained in:
parent
16fa9c0ff6
commit
3e72234399
1 changed files with 28 additions and 0 deletions
28
net/coova-chilli/patches/300-fix-compile-with-cyassl.patch
Normal file
28
net/coova-chilli/patches/300-fix-compile-with-cyassl.patch
Normal file
|
@ -0,0 +1,28 @@
|
|||
--- a/src/md5.h
|
||||
+++ b/src/md5.h
|
||||
@@ -28,6 +28,14 @@
|
||||
#define MD5Update MD5_Update
|
||||
#define MD5Final MD5_Final
|
||||
|
||||
+#elif HAVE_CYASSL
|
||||
+#include <cyassl/openssl/md5.h>
|
||||
+
|
||||
+#define MD5Init MD5_Init
|
||||
+#define MD5Update MD5_Update
|
||||
+#define MD5Final MD5_Final
|
||||
+
|
||||
+typedef struct CYASSL_MD5_CTX MD5_CTX;
|
||||
#else
|
||||
|
||||
struct MD5Context {
|
||||
--- a/src/md5.c
|
||||
+++ b/src/md5.c
|
||||
@@ -18,7 +18,7 @@
|
||||
#include <string.h> /* for memcpy() */
|
||||
#include "md5.h"
|
||||
|
||||
-#ifndef HAVE_OPENSSL
|
||||
+#if !defined(HAVE_OPENSSL) && !defined(HAVE_CYASSL)
|
||||
|
||||
void byteReverse(unsigned char *buf, size_t longs);
|
||||
|
Loading…
Reference in a new issue