From d9ccbcc96227edaf46bd27707f01d9d8b4ad5a72 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Thu, 27 Oct 2016 17:22:27 -0700 Subject: [PATCH] build - use libressl md5.h for kernel * libressl's md5.h needs a minor mod for us to be able to use it in the kernel build. --- crypto/libressl/include/openssl/md5.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crypto/libressl/include/openssl/md5.h b/crypto/libressl/include/openssl/md5.h index 90c3a501c4..62b00382d2 100644 --- a/crypto/libressl/include/openssl/md5.h +++ b/crypto/libressl/include/openssl/md5.h @@ -56,7 +56,9 @@ * [including the GNU Public Licence.] */ +#ifndef _KERNEL /* for DFly kernel compile */ #include +#endif #ifndef HEADER_MD5_H #define HEADER_MD5_H -- 2.41.0