Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable default features in libxml2. #5221

Merged
merged 5 commits into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions sdk/storage/azure-storage-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,20 @@

### Features Added

- Removed unnecessary dependencies on non-Windows platforms. (A community contribution, courtesy of _[teo-tsirpanis](https://github.com/teo-tsirpanis)_)

### Breaking Changes

### Bugs Fixed

### Other Changes

### Acknowledgments

Thank you to our developer community members who helped to make Azure Identity better with their contributions to this release:

- Theodore Tsirpanis _([GitHub](https://github.com/teo-tsirpanis))_

## 12.5.0 (2023-11-07)

### Features Added
Expand Down
3 changes: 2 additions & 1 deletion sdk/storage/azure-storage-common/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"azure-core-cpp",
{
"name": "libxml2",
"platform": "!windows"
"platform": "!windows",
"default-features": false
teo-tsirpanis marked this conversation as resolved.
Show resolved Hide resolved
},
{
"name": "openssl",
Expand Down
3 changes: 2 additions & 1 deletion sdk/storage/azure-storage-common/vcpkg/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
},
{
"name": "libxml2",
"platform": "!windows"
"platform": "!windows",
"default-features": false
teo-tsirpanis marked this conversation as resolved.
Show resolved Hide resolved
},
{
"name": "openssl",
Expand Down
3 changes: 2 additions & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
},
{
"name": "libxml2",
"platform": "!windows & !uwp"
"platform": "!windows & !uwp",
"default-features": false
teo-tsirpanis marked this conversation as resolved.
Show resolved Hide resolved
},
{
"name": "openssl"
Expand Down
Loading