Skip to content

Commit

Permalink
cmake: add SMB to list of disabled protocols if HTTP_ONLY is specified
Browse files Browse the repository at this point in the history
Reviewed-by: Jakub Zakrzewski
Closes #3770
  • Loading branch information
sergey-raevskiy authored and bagder committed Jun 11, 2019
1 parent 81da096 commit 36738ca
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CMakeLists.txt
Expand Up @@ -160,6 +160,8 @@ option(CURL_DISABLE_SMTP "to disable SMTP" OFF)
mark_as_advanced(CURL_DISABLE_SMTP)
option(CURL_DISABLE_GOPHER "to disable Gopher" OFF)
mark_as_advanced(CURL_DISABLE_GOPHER)
option(CURL_DISABLE_SMB "disables SMB" OFF)
mark_as_advanced(CURL_DISABLE_SMB)

if(HTTP_ONLY)
set(CURL_DISABLE_FTP ON)
Expand All @@ -174,6 +176,7 @@ if(HTTP_ONLY)
set(CURL_DISABLE_IMAP ON)
set(CURL_DISABLE_SMTP ON)
set(CURL_DISABLE_GOPHER ON)
set(CURL_DISABLE_SMB ON)
endif()

option(CURL_DISABLE_COOKIES "to disable cookies support" OFF)
Expand Down Expand Up @@ -1240,6 +1243,7 @@ _add_if("SCP" USE_LIBSSH2)
_add_if("SFTP" USE_LIBSSH2)
_add_if("RTSP" NOT CURL_DISABLE_RTSP)
_add_if("RTMP" USE_LIBRTMP)
_add_if("SMB" NOT CURL_DISABLE_SMB)
if(_items)
list(SORT _items)
endif()
Expand Down

0 comments on commit 36738ca

Please sign in to comment.