aboutsummaryrefslogtreecommitdiff
path: root/lib/vtls/polarssl_threadlock.c
diff options
context:
space:
mode:
authorDmitry S. Baikov <dsbaikov@gmail.com>2015-10-23 15:46:03 -0700
committerDaniel Stenberg <daniel@haxx.se>2015-10-23 16:05:25 +0200
commit6288cb930461e3068c623dc8c075ace55474fdab (patch)
treed920a38eb985e1595f1a68a6bce836808b927b34 /lib/vtls/polarssl_threadlock.c
parenteefd5a95afca7371a65bae2ae03dfcd6766cc6ad (diff)
mbedTLS: THREADING_SUPPORT compilation fix
Closes #505
Diffstat (limited to 'lib/vtls/polarssl_threadlock.c')
-rw-r--r--lib/vtls/polarssl_threadlock.c4
1 files changed, 2 insertions, 2 deletions
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 */