aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorLong Nguyen <nguyen.long.908132@gmail.com>2020-12-16 06:00:41 +0700
committerGitHub <noreply@github.com>2020-12-15 15:00:41 -0800
commit7944ed328a10833c4a6b3ab3ff947b2a0b9f8d9b (patch)
treefea1ac5e3fd3c0d525b0b358076eb127b5d1405d /scripts
parent7e50ef05c8afa214732389bb7d98bcc86c12759e (diff)
downloadvcpkg-7944ed328a10833c4a6b3ab3ff947b2a0b9f8d9b.tar.gz
vcpkg-7944ed328a10833c4a6b3ab3ff947b2a0b9f8d9b.zip
[icu] mingw support + [mp3lame] Fix VCPKG_TARGET_STATIC_LIBRARY_SUFFIX (#14969)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/boost/generate-ports.ps16
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/boost/generate-ports.ps1 b/scripts/boost/generate-ports.ps1
index 29ab213da..b6cbdc98d 100644
--- a/scripts/boost/generate-ports.ps1
+++ b/scripts/boost/generate-ports.ps1
@@ -25,7 +25,7 @@ else
# Optionally clear this array when moving to a new boost version
$port_versions = @{
#e.g. "asio" = 1;
- "locale" = 1;
+ "locale" = 3;
}
$per_port_data = @{
@@ -328,7 +328,7 @@ foreach ($library in $libraries)
elseif ($_ -match "none|none_t") { "optional" }
elseif ($_ -eq "limits") { "compatibility" }
elseif ($_ -match "cstdfloat|math_fwd") { "math" }
- elseif ($_ -eq "cast") { "conversion"; "numeric_conversion" } # DEPRECATED header file, includes <boost/polymorphic_cast.hpp> and <boost/numeric/conversion/cast.hpp>
+ elseif ($_ -eq "cast") { "conversion"; "numeric_conversion" } # DEPRECATED header file, includes <boost/polymorphic_cast.hpp> and <boost/numeric/conversion/cast.hpp>
elseif ($_ -match "polymorphic_cast|implicit_cast") { "conversion" }
elseif ($_ -eq "nondet_random") { "random" }
elseif ($_ -eq "memory_order") { "atomic" }
@@ -400,7 +400,7 @@ foreach ($library in $libraries)
}
elseif ($library -eq "locale")
{
- $deps += @("libiconv (!uwp&!windows)", "boost-system")
+ $deps += @("libiconv (!uwp&!windows&!mingw)", "boost-system")
}
elseif ($library -eq "asio")
{