diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2024-01-22 14:01:38 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2024-01-22 16:20:26 +0100 |
commit | 7a08d2cdfa37f70b95c963585a392af18298c06a (patch) | |
tree | 20acf1416db099fc0121cf597758e0870b12bfa0 /TARGETS | |
parent | fdf55aa76abcdf640e0d5a5266056485504e9739 (diff) | |
download | justbuild-7a08d2cdfa37f70b95c963585a392af18298c06a.tar.gz |
just-mr: Disable all non-HTTP but FTP and TFTP
Diffstat (limited to 'TARGETS')
-rw-r--r-- | TARGETS | 34 |
1 files changed, 32 insertions, 2 deletions
@@ -194,14 +194,44 @@ { "type": "let*" , "bindings": [ ["ENABLE_ARES", true] - , ["HTTP_ONLY", true] + , ["CURL_DISABLE_DICT", true] + , ["CURL_DISABLE_FILE", true] + , ["CURL_DISABLE_FTP", false] + , ["CURL_DISABLE_GOPHER", true] + , ["CURL_DISABLE_IMAP", true] + , ["CURL_DISABLE_LDAP", true] + , ["CURL_DISABLE_LDAPS", true] + , ["CURL_DISABLE_MQTT", true] + , ["CURL_DISABLE_POP3", true] + , ["CURL_DISABLE_RTSP", true] + , ["CURL_DISABLE_SMB", true] + , ["CURL_DISABLE_SMTP", true] + , ["CURL_DISABLE_TELNET", true] + , ["CURL_DISABLE_TFTP", false] , ["CURL_USE_LIBPSL", false] , ["CURL_USE_LIBSSH2", false] ] , "body": { "type": "env" , "vars": - ["ENABLE_ARES", "HTTP_ONLY", "CURL_USE_LIBPSL", "CURL_USE_LIBSSH2"] + [ "ENABLE_ARES" + , "CURL_DISABLE_DICT" + , "CURL_DISABLE_FILE" + , "CURL_DISABLE_FTP" + , "CURL_DISABLE_GOPHER" + , "CURL_DISABLE_IMAP" + , "CURL_DISABLE_LDAP" + , "CURL_DISABLE_LDAPS" + , "CURL_DISABLE_MQTT" + , "CURL_DISABLE_POP3" + , "CURL_DISABLE_RTSP" + , "CURL_DISABLE_SMB" + , "CURL_DISABLE_SMTP" + , "CURL_DISABLE_TELNET" + , "CURL_DISABLE_TFTP" + , "CURL_USE_LIBPSL" + , "CURL_USE_LIBSSH2" + ] } } } |