mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 09:19:00 +08:00
5605709a96
A small follow-up to #37086, which unintentionally disabled the stack protector on non-WASM platforms. This adds it to the set of default features (on all non-WASM platforms), which should fix this. - [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [x] SHA512s are updated for each updated download. - [x] The "supports" clause reflects platforms that may be fixed by this new version. - [x] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [x] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
36 lines
717 B
JSON
36 lines
717 B
JSON
{
|
|
"name": "libflac",
|
|
"version": "1.4.3",
|
|
"port-version": 2,
|
|
"description": "Library for manipulating FLAC files",
|
|
"homepage": "https://xiph.org/flac/",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": [
|
|
"libogg",
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
{
|
|
"name": "stack-protector",
|
|
"platform": "!emscripten"
|
|
}
|
|
],
|
|
"features": {
|
|
"asm": {
|
|
"description": "Use any assembly optimization routines",
|
|
"supports": "x86"
|
|
},
|
|
"stack-protector": {
|
|
"description": "Build with stack smashing protection",
|
|
"supports": "!emscripten"
|
|
}
|
|
}
|
|
}
|