1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
"name": "libmicrohttpd",
"version": "1.0.1",
"port-version": 2,
"description": "GNU libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application",
"homepage": "https://www.gnu.org/software/libmicrohttpd/",
"license": "LGPL-2.1-or-later",
"supports": "!((arm & windows) | uwp)",
"dependencies": [
{
"name": "gettext",
"platform": "!windows"
},
{
"name": "vcpkg-msbuild",
"host": true,
"platform": "windows & !mingw"
}
],
"features": {
"https": {
"description": "Enable HTTPS protocol support",
"supports": "!windows | mingw",
"dependencies": [
"libgnutls"
]
}
}
}
|