diff options
author | Steve Holme <steve_holme@hotmail.com> | 2015-11-11 22:18:24 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2015-11-11 22:18:24 +0000 |
commit | d64add3c71f0ec55592e9c4699720d107c6c6989 (patch) | |
tree | ecef793b4b244b5b475f3921071b096fc3c1f686 /lib/curl_config.h.cmake | |
parent | a215381c94e8e4d03d69e858925b4ae84ca7bcd8 (diff) | |
download | curl-d64add3c71f0ec55592e9c4699720d107c6c6989.tar.gz |
cmake: Add missing feature macros in config header (Part 2)
In addition to commit a215381c94 added the RTSP, RTMP and SMB protocols.
Diffstat (limited to 'lib/curl_config.h.cmake')
-rw-r--r-- | lib/curl_config.h.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/curl_config.h.cmake b/lib/curl_config.h.cmake index 203ade687..6b5070a8b 100644 --- a/lib/curl_config.h.cmake +++ b/lib/curl_config.h.cmake @@ -45,6 +45,15 @@ /* to disable proxies */ #cmakedefine CURL_DISABLE_PROXY 1 +/* to disable RTSP */ +#cmakedefine CURL_DISABLE_RTSP 1 + +/* to disable RTMP */ +#cmakedefine CURL_DISABLE_RTMP 1 + +/* to disable SMB */ +#cmakedefine CURL_DISABLE_SMB 1 + /* to disable SMTP */ #cmakedefine CURL_DISABLE_SMTP 1 |