diff options
author | Dan Fandrich <dan@coneharvesters.com> | 2015-03-19 10:11:17 +0100 |
---|---|---|
committer | Dan Fandrich <dan@coneharvesters.com> | 2015-03-19 10:11:17 +0100 |
commit | 9e66d3f4d3c0a5507943a2ee90c8fec4aae88168 (patch) | |
tree | 3e3f14e42f1730437cf4cba9ed8e2b9876af6280 | |
parent | 1977ff811d361d97f1c195c60b9a2dc94b9ebc59 (diff) |
axtls: version 1.5.2 now requires that config.h be manually included
-rw-r--r-- | lib/md5.c | 1 | ||||
-rw-r--r-- | lib/urldata.h | 1 | ||||
-rw-r--r-- | lib/vtls/axtls.c | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -153,6 +153,7 @@ static void MD5_Final(unsigned char digest[16], MD5_CTX *ctx) } #elif defined(USE_AXTLS) +#include <axTLS/config.h> #include <axTLS/os_int.h> #include <axTLS/crypto.h> #else diff --git a/lib/urldata.h b/lib/urldata.h index 202d81951..caa5debf1 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -120,6 +120,7 @@ #endif #ifdef USE_AXTLS +#include <axTLS/config.h> #include <axTLS/ssl.h> #undef malloc #undef calloc diff --git a/lib/vtls/axtls.c b/lib/vtls/axtls.c index 4907d2075..930136a23 100644 --- a/lib/vtls/axtls.c +++ b/lib/vtls/axtls.c @@ -29,6 +29,7 @@ #include "curl_setup.h" #ifdef USE_AXTLS +#include <axTLS/config.h> #include <axTLS/ssl.h> #include "axtls.h" |