diff options
| author | Robert Schumacher <roschuma@microsoft.com> | 2018-01-19 16:26:30 -0800 |
|---|---|---|
| committer | Robert Schumacher <roschuma@microsoft.com> | 2018-01-19 16:26:30 -0800 |
| commit | 55415f920077be653dfa79d8cf3db4c3a8cfd937 (patch) | |
| tree | b32e9de25a3b72c97f52d43393354d17ceac1d08 | |
| parent | b7b61e917fb62dcf1f4f7444cd34109431633446 (diff) | |
| download | vcpkg-55415f920077be653dfa79d8cf3db4c3a8cfd937.tar.gz vcpkg-55415f920077be653dfa79d8cf3db4c3a8cfd937.zip | |
[boost-asio] Added openssl as a dependency since most users will want it
| -rw-r--r-- | ports/boost-asio/CONTROL | 4 | ||||
| -rw-r--r-- | ports/boost-vcpkg-helpers/generate-ports.ps1 | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/ports/boost-asio/CONTROL b/ports/boost-asio/CONTROL index 3df7042e6..8335a6dd8 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 62cfe5cc2..0b186caa4 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 `
|
