From: Felix Morgner Date: Thu, 26 Jan 2017 13:06:08 +0000 (+0100) Subject: Support for mbed TLS 2.4 fixes #102 X-Git-Url: http://git.code-monkey.de/?p=umurmur.git;a=commitdiff_plain;h=9fa95cb052994369aefd2f10951c1dac2f510ee3 Support for mbed TLS 2.4 fixes #102 --- diff --git a/src/ssl.h b/src/ssl.h index 2bb80e2..3d40283 100644 --- a/src/ssl.h +++ b/src/ssl.h @@ -90,7 +90,11 @@ typedef ssl_context SSL_handle_t; #elif defined(USE_MBEDTLS) #include +#if (MBEDTLS_VERSION_MINOR > 3) +#include +#else #include +#endif #include #if defined(MBEDTLS_VERSION_MAJOR)