aboutsummaryrefslogtreecommitdiff
path: root/scripts/boost
diff options
context:
space:
mode:
authord-winsor <danwin@microsoft.com>2020-03-24 13:01:25 -0700
committerGitHub <noreply@github.com>2020-03-24 13:01:25 -0700
commite2c671d4bdccc023a7e0d78ca5d658057543c443 (patch)
treecc81bd39aae965665cce1dd54c31527d6ebc5719 /scripts/boost
parent78a2116a4ad58a96d23146ffa8f8ca4d998a3a5a (diff)
downloadvcpkg-e2c671d4bdccc023a7e0d78ca5d658057543c443.tar.gz
vcpkg-e2c671d4bdccc023a7e0d78ca5d658057543c443.zip
[boost-process] Patch for header bug in boost 1.72 (#10453)
* Added patch for boost-process header bug in 1.72 * Updated version number. * Version change for generate-ports
Diffstat (limited to 'scripts/boost')
-rw-r--r--scripts/boost/generate-ports.ps16
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/boost/generate-ports.ps1 b/scripts/boost/generate-ports.ps1
index b1cf08377..e154bd38d 100644
--- a/scripts/boost/generate-ports.ps1
+++ b/scripts/boost/generate-ports.ps1
@@ -50,7 +50,7 @@ function Generate()
$controlDeps = ($Depends | sort) -join ", "
$versionSuffix = ""
- if ($PortName -eq "iostreams" -or $PortName -eq "python")
+ if ($PortName -eq "iostreams" -or $PortName -eq "process" -or $PortName -eq "python")
{
$versionSuffix = "-1"
}
@@ -115,6 +115,10 @@ function Generate()
{
$portfileLines += @(" PATCHES Removeseekpos.patch")
}
+ if ($PortName -eq "process")
+ {
+ $portfileLines += @(" PATCHES async_pipe_header.patch")
+ }
$portfileLines += @(
")"
""