From 6288cb930461e3068c623dc8c075ace55474fdab Mon Sep 17 00:00:00 2001 From: "Dmitry S. Baikov" Date: Fri, 23 Oct 2015 15:46:03 -0700 Subject: mbedTLS: THREADING_SUPPORT compilation fix Closes #505 --- lib/vtls/polarssl_threadlock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/vtls/polarssl_threadlock.c') diff --git a/lib/vtls/polarssl_threadlock.c b/lib/vtls/polarssl_threadlock.c index 62abf43b2..dd672b5cb 100644 --- a/lib/vtls/polarssl_threadlock.c +++ b/lib/vtls/polarssl_threadlock.c @@ -22,7 +22,7 @@ ***************************************************************************/ #include "curl_setup.h" -#if defined(USE_POLARSSL) && \ +#if (defined(USE_POLARSSL) || defined(USE_MBEDTLS)) && \ (defined(USE_THREADS_POSIX) || defined(USE_THREADS_WIN32)) #if defined(USE_THREADS_POSIX) @@ -150,4 +150,4 @@ int polarsslthreadlock_unlock_function(int n) return 1; /* OK */ } -#endif /* USE_POLARSSL */ +#endif /* USE_POLARSSL || USE_MBEDTLS */ -- cgit v1.2.3