mirror of
https://github.com/curl/curl.git
synced 2026-07-26 01:27:15 +03:00
build: fix builds that disable protocols but not digest auth
- Build base64 functions if digest auth is not disabled. Prior to this change if some protocols were disabled but not digest auth then a build error would occur due to missing base64 functions. Fixes https://github.com/curl/curl/issues/12440 Closes https://github.com/curl/curl/pull/12442
This commit is contained in:
parent
0eda1f6c9f
commit
c44671ed43
1 changed files with 1 additions and 0 deletions
|
|
@ -31,6 +31,7 @@
|
|||
!defined(CURL_DISABLE_SMTP) || \
|
||||
!defined(CURL_DISABLE_POP3) || \
|
||||
!defined(CURL_DISABLE_IMAP) || \
|
||||
!defined(CURL_DISABLE_DIGEST_AUTH) || \
|
||||
!defined(CURL_DISABLE_DOH) || defined(USE_SSL) || defined(BUILDING_CURL)
|
||||
#include "curl/curl.h"
|
||||
#include "warnless.h"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue