diff --git a/ports/boost-asio/CONTROL b/ports/boost-asio/CONTROL index 3df7042e634..8335a6dd8fb 100644 --- a/ports/boost-asio/CONTROL +++ b/ports/boost-asio/CONTROL @@ -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 diff --git a/ports/boost-vcpkg-helpers/generate-ports.ps1 b/ports/boost-vcpkg-helpers/generate-ports.ps1 index 62cfe5cc24e..0b186caa4d9 100644 --- a/ports/boost-vcpkg-helpers/generate-ports.ps1 +++ b/ports/boost-vcpkg-helpers/generate-ports.ps1 @@ -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 `