summaryrefslogtreecommitdiff
path: root/ustream-internal.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2016-01-15 20:42:25 +0100
committerFelix Fietkau <nbd@openwrt.org>2016-01-15 23:42:31 +0100
commitadd9c19ae46263e9c2ca85c0baad22cd758f6c63 (patch)
tree791bf2ee3ee1389ae323078580673a148651311e /ustream-internal.h
parentc19d5b22e779848941c51aeb7c3030a18c80aa73 (diff)
downloadustream-ssl-add9c19ae46263e9c2ca85c0baad22cd758f6c63.tar.gz
add mbedtls variant
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'ustream-internal.h')
-rw-r--r--ustream-internal.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ustream-internal.h b/ustream-internal.h
index e0e1f50..020e1c6 100644
--- a/ustream-internal.h
+++ b/ustream-internal.h
@@ -21,7 +21,9 @@
#define __hidden __attribute__((visibility("hidden")))
-#ifdef HAVE_POLARSSL
+#if defined(HAVE_MBEDTLS)
+#include "ustream-mbedtls.h"
+#elif defined(HAVE_POLARSSL)
#include "ustream-polarssl.h"
#else
#include "ustream-openssl.h"