mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-18 20:03:02 +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
|
||||
Source: boost-asio
|
||||
Version: 1.66.0
|
||||
Build-Depends: boost-coroutine (windows), boost-date-time, boost-regex, boost-system, boost-vcpkg-helpers
|
||||
Version: 1.66.0-1
|
||||
Build-Depends: boost-coroutine (windows), boost-date-time, boost-regex, boost-system, boost-vcpkg-helpers, openssl
|
||||
Description: Boost asio module
|
||||
|
@ -22,7 +22,7 @@ function Generate()
|
||||
$sanitizedName = $name -replace "_","-"
|
||||
|
||||
$versionsuffix = ""
|
||||
if ($Name -eq "test" -or $Name -eq "python")
|
||||
if ($Name -eq "test" -or $Name -eq "python" -or $Name -eq "asio")
|
||||
{
|
||||
$versionsuffix = "-1"
|
||||
}
|
||||
@ -325,6 +325,10 @@ foreach ($library in $libraries)
|
||||
{
|
||||
$deps += @("zlib", "bzip2")
|
||||
}
|
||||
elseif ($library -eq "asio")
|
||||
{
|
||||
$deps += @("openssl")
|
||||
}
|
||||
|
||||
Generate `
|
||||
-Name $library `
|
||||
|
Loading…
Reference in New Issue
Block a user