diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-09-09 22:32:17 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-09-10 08:50:04 +0200 |
commit | 11ab0ad60f1e106ad84f33ea9843c0da0433e49e (patch) | |
tree | 7787b54841f44b220a0be6270b4b24c16fc6681a | |
parent | 20417a13fb8f8355d4144c7accc206ca101e1a3a (diff) | |
download | curl-11ab0ad60f1e106ad84f33ea9843c0da0433e49e.tar.gz |
base64: also build for pop3 and imap
Follow-up to the fix in 20417a13fb8f83
Reported-by: Michael Olbrich
Fixes #5937
Closes #5948
-rw-r--r-- | lib/base64.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/base64.c b/lib/base64.c index 433afcb70..ec632e6f7 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -27,6 +27,8 @@ #if !defined(CURL_DISABLE_HTTP_AUTH) || defined(USE_SSH) || \ !defined(CURL_DISABLE_LDAP) || \ !defined(CURL_DISABLE_SMTP) || \ + !defined(CURL_DISABLE_POP3) || \ + !defined(CURL_DISABLE_IMAP) || \ !defined(CURL_DISABLE_DOH) || defined(USE_SSL) #include "urldata.h" /* for the Curl_easy definition */ |