mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 03:03:05 +08:00
[boost-asio] Added openssl as a dependency since most users will want it
This commit is contained in:
parent
b7b61e917f
commit
55415f9200
@ -1,5 +1,5 @@
|
|||||||
# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
|
# Automatically generated by boost-vcpkg-helpers/generate-ports.ps1
|
||||||
Source: boost-asio
|
Source: boost-asio
|
||||||
Version: 1.66.0
|
Version: 1.66.0-1
|
||||||
Build-Depends: boost-coroutine (windows), boost-date-time, boost-regex, boost-system, boost-vcpkg-helpers
|
Build-Depends: boost-coroutine (windows), boost-date-time, boost-regex, boost-system, boost-vcpkg-helpers, openssl
|
||||||
Description: Boost asio module
|
Description: Boost asio module
|
||||||
|
@ -22,7 +22,7 @@ function Generate()
|
|||||||
$sanitizedName = $name -replace "_","-"
|
$sanitizedName = $name -replace "_","-"
|
||||||
|
|
||||||
$versionsuffix = ""
|
$versionsuffix = ""
|
||||||
if ($Name -eq "test" -or $Name -eq "python")
|
if ($Name -eq "test" -or $Name -eq "python" -or $Name -eq "asio")
|
||||||
{
|
{
|
||||||
$versionsuffix = "-1"
|
$versionsuffix = "-1"
|
||||||
}
|
}
|
||||||
@ -325,6 +325,10 @@ foreach ($library in $libraries)
|
|||||||
{
|
{
|
||||||
$deps += @("zlib", "bzip2")
|
$deps += @("zlib", "bzip2")
|
||||||
}
|
}
|
||||||
|
elseif ($library -eq "asio")
|
||||||
|
{
|
||||||
|
$deps += @("openssl")
|
||||||
|
}
|
||||||
|
|
||||||
Generate `
|
Generate `
|
||||||
-Name $library `
|
-Name $library `
|
||||||
|
Loading…
Reference in New Issue
Block a user