mirror of
https://github.com/curl/curl.git
synced 2026-08-20 01:13:48 +03:00
test1165: check if curl_config.h.cmake lists all DISABLED options
Also fix issues: - cmake: fix `CURL_DISABLE_HTTP_AUTH` option - cmake: fix `CURL_DISABLE_SHUFFLE_DNS` option Fixes: ``` Present in CMakeLists.txt, not propagated via curl_config.h.cmake: CURL_DISABLE_HTTP_AUTH Present in CMakeLists.txt, not propagated via curl_config.h.cmake: CURL_DISABLE_SHUFFLE_DNS ``` Ref: https://github.com/curl/curl/actions/runs/10655027540/job/29532054141?pr=14754#step:11:2090 Closes #14754
This commit is contained in:
parent
ad32fb42fb
commit
83bcd335cd
2 changed files with 24 additions and 3 deletions
|
|
@ -89,6 +89,9 @@
|
|||
/* disables HTTP */
|
||||
#cmakedefine CURL_DISABLE_HTTP 1
|
||||
|
||||
/* disabled all HTTP authentication methods */
|
||||
#cmakedefine CURL_DISABLE_HTTP_AUTH 1
|
||||
|
||||
/* disables IMAP */
|
||||
#cmakedefine CURL_DISABLE_IMAP 1
|
||||
|
||||
|
|
@ -131,6 +134,9 @@
|
|||
/* disables RTSP */
|
||||
#cmakedefine CURL_DISABLE_RTSP 1
|
||||
|
||||
/* disabled shuffle DNS feature */
|
||||
#cmakedefine CURL_DISABLE_SHUFFLE_DNS 1
|
||||
|
||||
/* disables SMB */
|
||||
#cmakedefine CURL_DISABLE_SMB 1
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue