[boost-asio] Added openssl as a dependency since most users will want it

This commit is contained in:
Robert Schumacher 2018-01-19 16:26:30 -08:00
parent b7b61e917f
commit 55415f9200
2 changed files with 7 additions and 3 deletions

View File

@ -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

View File

@ -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 `