diff options
| author | mitzal <34011576+mitzal@users.noreply.github.com> | 2020-04-24 06:40:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-23 21:40:21 -0700 |
| commit | 242897b0460afd99c0f064f269ae73c419435aef (patch) | |
| tree | ed04e7965bb51d732d7263320f0415e58d0d5717 /ports/libzip/CONTROL | |
| parent | 6717e1b9d053518e836ec11f49bd1d501b1a650e (diff) | |
| download | vcpkg-242897b0460afd99c0f064f269ae73c419435aef.tar.gz vcpkg-242897b0460afd99c0f064f269ae73c419435aef.zip | |
[libzip] update to rel-1-6-1 (#10784)
* Libzip updated to rel-1-6-1
* [libzip] Add windows_crypto feature
The new BCrypt/CNG-based crypto uses BCryptDeriveKeyPBKDF2 which is only
available since WinNT 6.1. It is important to me as a consumer of libzip
through vcpkg to be able to turn this off.
* Additional options added.
* Common Crypto supported as an option for encryption backend.
Co-authored-by: MichaĆ Janiszewski <janisozaur+signed@gmail.com>
Diffstat (limited to 'ports/libzip/CONTROL')
| -rw-r--r-- | ports/libzip/CONTROL | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/ports/libzip/CONTROL b/ports/libzip/CONTROL index a01feac85..757ee2cfa 100644 --- a/ports/libzip/CONTROL +++ b/ports/libzip/CONTROL @@ -1,14 +1,32 @@ Source: libzip -Version: rel-1-5-2--1 +Version: rel-1-6-1 Homepage: https://github.com/nih-at/libzip Build-Depends: zlib -Default-Features: openssl, bzip2 -Description: A library for reading, creating, and modifying zip archives. +Default-Features: bzip2,default-aes +Description: A library for reading, creating, and modifying zip archives Feature: bzip2 Build-Depends: bzip2 Description: Support bzip2-compressed zip archives +Feature: liblzma +Build-Depends: liblzma +Description: Support XZ compressed zip archives using liblzma + +Feature: default-aes +Build-Depends: libzip[core,openssl](!(windows|osx)),libzip[core,wincrypto](windows),libzip[core,commoncrypto](osx) +Description: Use default AES + Feature: openssl Build-Depends: openssl Description: AES (encryption) support using OpenSSL + +Feature: wincrypto +Description: AES (encryption) support using Windows Crypto API + +Feature: commoncrypto +Description: AES( encryption) support using Apple's Common Crypto API + +Feature: mbedtls +Build-Depends: mbedtls +Description: AES (encryption) support using mbedtls
\ No newline at end of file |
