diff options
Diffstat (limited to 'libs/libcurl/src/md4.c')
-rw-r--r-- | libs/libcurl/src/md4.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libs/libcurl/src/md4.c b/libs/libcurl/src/md4.c index e7c77bc36e..0b4ea9a3c3 100644 --- a/libs/libcurl/src/md4.c +++ b/libs/libcurl/src/md4.c @@ -38,6 +38,13 @@ #include "curl_setup.h" +#ifdef USE_OPENSSL +#include <openssl/opensslconf.h> +#endif +#ifdef USE_MBEDTLS +#include <mbedtls/config.h> +#endif + /* The NSS, OS/400, and when not included, OpenSSL and mbed TLS crypto * libraries do not provide the MD4 hash algorithm, so we use this * implementation of it */ |