diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-07-21 11:34:10 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-07-21 15:09:07 +0200 |
commit | 90ddcb1722c07aba3b92652fb407c4cae3c0cfa6 (patch) | |
tree | 113ffaca310f3b25c937a4ec384dbc4cf83b65be /etc/import/include/git2/TARGETS.git2 | |
parent | 629dc072c7c81693e55cafaa90e63ff1128b0efe (diff) | |
download | justbuild-90ddcb1722c07aba3b92652fb407c4cae3c0cfa6.tar.gz |
Update libgit2 to 1.7.0
Diffstat (limited to 'etc/import/include/git2/TARGETS.git2')
-rw-r--r-- | etc/import/include/git2/TARGETS.git2 | 158 |
1 files changed, 2 insertions, 156 deletions
diff --git a/etc/import/include/git2/TARGETS.git2 b/etc/import/include/git2/TARGETS.git2 index f0ab360d..5f16be19 100644 --- a/etc/import/include/git2/TARGETS.git2 +++ b/etc/import/include/git2/TARGETS.git2 @@ -1,158 +1,4 @@ -{ "sys/features.h": - { "type": "configure" - , "arguments_config": - [ "OS" - , "ARCH" - , "TARGET_ARCH" - , "DEBUG_POOL" - , "THREADSAFE" - , "REGEX_BACKEND" - , "USE_ICONV" - , "USE_NSEC" - , "USE_SSH" - , "USE_NTLMCLIENT" - , "USE_GSSAPI" - , "USE_SHA1" - , "USE_SHA256" - , "USE_HTTPS" - ] - , "target": "feature_header" - , "config": - { "type": "let*" - , "bindings": - [ [ "TARGET_ARCH" - , { "type": "var" - , "name": "TARGET_ARCH" - , "default": {"type": "var", "name": "ARCH"} - } - ] - , [ "IS_BSD" - , { "type": "case" - , "expr": {"type": "var", "name": "OS"} - , "case": {"darwin": true, "bsd": true} - } - ] - , [ "IS_32BIT" - , { "type": "case" - , "expr": - { "type": "var" - , "name": "TARGET_ARCH" - , "default": {"type": "var", "name": "ARCH"} - } - , "case": {"x86": true, "arm": true} - } - ] - , [ "defines1" - , { "type": "++" - , "$1": - [ [ ["GIT_DEBUG_POOL", {"type": "var", "name": "DEBUG_POOL"}] - , ["GIT_THREADS", {"type": "var", "name": "THREADSAFE"}] - , { "type": "if" - , "cond": {"type": "var", "name": "IS_32BIT"} - , "then": ["GIT_ARCH_32", 1] - , "else": ["GIT_ARCH_64", 1] - } - , ["GIT_USE_ICONV", {"type": "var", "name": "USE_ICONV"}] - , ["GIT_SSH", {"type": "var", "name": "USE_SSH"}] - , [ "GIT_SSH_MEMORY_CREDENTIALS" - , {"type": "var", "name": "USE_SSH"} - ] - , ["GIT_NTLM", {"type": "var", "name": "USE_NTLMCLIENT"}] - ] - , { "type": "if" - , "cond": {"type": "var", "name": "USE_NSEC"} - , "then": - [ ["GIT_USE_NSEC", 1] - , ["GIT_USE_FUTIMENS", 1] - , ["GIT_USE_STAT_MTIME_NSEC", 1] - , { "type": "if" - , "cond": {"type": "var", "name": "IS_BSD"} - , "then": ["GIT_USE_STAT_MTIMESPEC", 1] - , "else": ["GIT_USE_STAT_MTIM", 1] - } - ] - } - , [ { "type": "case*" - , "expr": {"type": "var", "name": "REGEX_BACKEND"} - , "case": - [ ["regcomp_l", ["GIT_REGEX_REGCOMP_L", 1]] - , ["regcomp", ["GIT_REGEX_REGCOMP", 1]] - , ["pcre", ["GIT_REGEX_PCRE", 1]] - , ["pcre2", ["GIT_REGEX_PCRE2", 1]] - , ["builtin", ["GIT_REGEX_BUILTIN", 1]] - , [null, ["GIT_REGEX_BUILTIN", 1]] - ] - , "default": - { "type": "fail" - , "msg": "The REGEX_BACKEND option provided is not supported" - } - } - ] - , { "type": "case*" - , "expr": {"type": "var", "name": "USE_GSSAPI"} - , "case": - [ ["GSS.framework", [["GIT_GSSFRAMEWORK", 1]]] - , ["gssapi", [["GIT_GSSAPI", 1]]] - , [false, []] - ] - , "default": - { "type": "fail" - , "msg": "Backend asked for in USE_GSSAPI is not supported" - } - } - , { "type": "if" - , "cond": {"type": "var", "name": "USE_HTTPS"} - , "then": - [ ["GIT_HTTPS", 1] - , { "type": "case*" - , "expr": {"type": "var", "name": "USE_HTTPS"} - , "case": - [ ["SecureTransport", ["GIT_SECURE_TRANSPORT", 1]] - , ["OpenSSL", ["GIT_OPENSSL", 1]] - , ["mbedTLS", ["GIT_MBEDTLS", 1]] - , ["WinHTTP", ["GIT_WINHTTP", 1]] - ] - , "default": - { "type": "fail" - , "msg": "Backend asked for in USE_HTTPS is not supported" - } - } - ] - } - , { "type": "case*" - , "expr": {"type": "var", "name": "USE_SHA1"} - , "case": - [ ["CollisionDetection", [["GIT_SHA1_COLLISIONDETECT", 1]]] - , ["Win32", [["GIT_SHA1_WIN32", 1]]] - , ["CommonCrypto", [["GIT_SHA1_COMMON_CRYPTO", 1]]] - , ["OpenSSL", [["GIT_SHA1_OPENSSL", 1]]] - , ["mbedTLS", [["GIT_SHA1_MBEDTLS", 1]]] - ] - } - , { "type": "case*" - , "expr": {"type": "var", "name": "USE_SHA256"} - , "case": - [ ["Builtin", [["GIT_SHA256_BUILTIN", 1]]] - , ["Win32", [["GIT_SHA256_WIN32", 1]]] - , ["CommonCrypto", [["GIT_SHA256_COMMON_CRYPTO", 1]]] - , ["OpenSSL", [["GIT_SHA256_OPENSSL", 1]]] - , ["mbedTLS", [["GIT_SHA256_MBEDTLS", 1]]] - ] - } - ] - } - ] - ] - , "body": {"type": "env", "vars": ["defines1"]} - } - } -, "feature_header": - { "type": ["@", "rules", "CC/auto", "config"] - , "name": ["features.h"] - , "guard": ["INCLUDE_features_h__"] - , "stage": ["sys"] - } -, "TREE": +{ "TREE": { "type": "tree" , "name": "git2" , "deps": @@ -247,7 +93,7 @@ , "sys/repository.h" , "sys/stream.h" , "sys/transport.h" - , "sys/features.h" + , ["src/libgit2", "experimental.h"] ] } } |