mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 04:19:08 +08:00
[boost-iostreams] Fix mingw (#34387)
* [boost-iostreams] Fix mingw * run generate-ports.ps1 --------- Co-authored-by: Javier Matos Denizac <javier.matosd@gmail.com>
This commit is contained in:
parent
2815578f4a
commit
f330a325dd
@ -40,12 +40,12 @@ if("zlib" IN_LIST FEATURES)
|
||||
list(APPEND B2_OPTIONS
|
||||
-sZLIB_INCLUDE="${CURRENT_INSTALLED_DIR}/include"
|
||||
)
|
||||
# Overwride debug library name
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
if(WIN32)
|
||||
# Overwride windows library names
|
||||
if(WIN32)
|
||||
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
|
||||
set(ZLIB_NAME zlibd)
|
||||
else()
|
||||
set(ZLIB_NAME z)
|
||||
set(ZLIB_NAME zlib) # for mingw
|
||||
endif()
|
||||
list(APPEND B2_OPTIONS
|
||||
-sZLIB_NAME=${ZLIB_NAME}
|
||||
|
@ -2,6 +2,7 @@
|
||||
"$comment": "Automatically generated by scripts/boost/generate-ports.ps1",
|
||||
"name": "boost-iostreams",
|
||||
"version": "1.83.0",
|
||||
"port-version": 1,
|
||||
"description": "Boost iostreams module",
|
||||
"homepage": "https://github.com/boostorg/iostreams",
|
||||
"license": "BSL-1.0",
|
||||
|
@ -26,6 +26,8 @@ $defaultPortVersion = 0
|
||||
$portVersions = @{
|
||||
'boost' = 1;
|
||||
'boost-fiber' = 1;
|
||||
'boost-iostreams' = 1;
|
||||
'boost-modular-build-helper' = 1;
|
||||
}
|
||||
|
||||
function Get-PortVersion {
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "be97780ebb3e46185f1838115f642ec2d110f76d",
|
||||
"version": "1.83.0",
|
||||
"port-version": 1
|
||||
},
|
||||
{
|
||||
"git-tree": "da8972f0e4c59981021913e4ef16a39a9ff8d491",
|
||||
"version": "1.83.0",
|
||||
|
@ -926,7 +926,7 @@
|
||||
},
|
||||
"boost-iostreams": {
|
||||
"baseline": "1.83.0",
|
||||
"port-version": 0
|
||||
"port-version": 1
|
||||
},
|
||||
"boost-iterator": {
|
||||
"baseline": "1.83.0",
|
||||
|
Loading…
Reference in New Issue
Block a user