diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-03-26 15:00:48 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2024-03-26 17:34:55 +0100 |
commit | 527e5d552b64c00f4af27007c37de5bf8f100c80 (patch) | |
tree | 559d6b1a7cd8acfad499a388bf799d36fadf0ca9 /etc/import/src/TARGETS.curl | |
parent | b067417a86e6b4b242f5cd5be162925ee64fb9bb (diff) | |
download | justbuild-527e5d552b64c00f4af27007c37de5bf8f100c80.tar.gz |
third-party: Update libcurl to v8.6.0
Now the curl URL API always fails to parse the empty string, so
our test was changed to reflect this.
Diffstat (limited to 'etc/import/src/TARGETS.curl')
-rw-r--r-- | etc/import/src/TARGETS.curl | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/etc/import/src/TARGETS.curl b/etc/import/src/TARGETS.curl index 60164c0e..fa5869ad 100644 --- a/etc/import/src/TARGETS.curl +++ b/etc/import/src/TARGETS.curl @@ -43,7 +43,16 @@ { "type": "case*" , "expr": {"type": "var", "name": "OS"} , "case": - [["darwin", ["-framework", "SystemConfiguration", "CoreFoundations"]]] + [ [ "darwin" + , [ "-framework" + , "SystemConfiguration" + , "-framework" + , "CoreFoundation" + , "-framework" + , "CoreServices" + ] + ] + ] } } } @@ -283,11 +292,11 @@ } , "curl_zstd": { "type": ["@", "rules", "CC", "library"] - , "arguments_config": ["USE_SYSTEM_LIBS", "USE_ZSTD"] + , "arguments_config": ["USE_SYSTEM_LIBS", "CURL_ZSTD"] , "name": ["curl_zstd"] , "private-ldflags": { "type": "if" - , "cond": {"type": "var", "name": "USE_ZSTD"} + , "cond": {"type": "var", "name": "CURL_ZSTD"} , "then": { "type": "if" , "cond": {"type": "var", "name": "USE_SYSTEM_LIBS"} @@ -296,7 +305,7 @@ } , "deps": { "type": "if" - , "cond": {"type": "var", "name": "USE_ZSTD"} + , "cond": {"type": "var", "name": "CURL_ZSTD"} , "then": { "type": "if" , "cond": {"type": "var", "name": "USE_SYSTEM_LIBS"} |