diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-01-24 16:59:41 +0100 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-02-24 12:14:20 +0100 |
commit | 8c5a7b8dc317307f494a83a8d985f5c5ee09a3a4 (patch) | |
tree | 214486b1f9b57bf3d81758fcce24c8ea5eedd319 /TARGETS | |
parent | b86388107fda2094060a5e9470728b7be9d750c9 (diff) | |
download | justbuild-8c5a7b8dc317307f494a83a8d985f5c5ee09a3a4.tar.gz |
libgit2: Update to v1.5.0
Changes to build description:
- new USE_SHA256 flag
- removed "Generic" option for USE_SHA1
- updated to the new source code structure
(split "src/git2" into "src/libgit2" and "src/util")
Diffstat (limited to 'TARGETS')
-rw-r--r-- | TARGETS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -178,13 +178,15 @@ { "type": "let*" , "bindings": [ ["USE_SHA1", "OpenSSL"] + , ["USE_SHA256", "OpenSSL"] , ["USE_SSH", false] , ["USE_HTTPS", "OpenSSL"] , ["USE_GSSAPI", false] ] , "body": { "type": "env" - , "vars": ["USE_SHA1", "USE_SSH", "USE_HTTPS", "USE_GSSAPI"] + , "vars": + ["USE_SHA1", "USE_SHA256", "USE_SSH", "USE_HTTPS", "USE_GSSAPI"] } } } |