mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-22 19:53:06 +08:00
9595b6355e
* [azure-core-cpp] Update to 1.11.1 ## 1.11.1 (2024-02-02) ### Bugs Fixed - [[#5154]](https://github.com/Azure/azure-sdk-for-cpp/issues/5154) WinHTTP Transport logging (and exception strings) have dangling periods making it harder to read. ### Other Changes - Improved log messages for WinHTTP Transport to help diagnose WinHTTP state machine related issues. * [azure-core-amqp-cpp] Update to 1.0.0-beta.7 ## 1.0.0-beta.7 (2024-02-02) ### Features Added The `Close` method on AMQP Message Sender and Message Receiver now blocks until the client receives a `DETACH` response from the remote node. ### Breaking Changes - The `Close` method on AMQP Message Sender and Message Receiver now accepts an `Azure::Core::Context` parameter. This parameter is defaulted so this change should not affect existing code. ### Bugs Fixed - Fixed uAMQP connection channel so that a channel is released when an END performative is received from the remote node instead of when the END performative is sent to the remote node. - Enabled more than one uAMQP session to be created on a single connection.
42 lines
1.4 KiB
CMake
42 lines
1.4 KiB
CMake
# NOTE: All changes made to this file will get overwritten by the next port release.
|
|
# Please contribute your changes to https://github.com/Azure/azure-sdk-for-cpp.
|
|
|
|
vcpkg_from_github(
|
|
OUT_SOURCE_PATH SOURCE_PATH
|
|
REPO Azure/azure-sdk-for-cpp
|
|
REF azure-core_1.11.1
|
|
SHA512 6a4e34e17b34864e246d17c22252e9e0056e2128be5872a23c8d4c6feb6cfd9e253ef48c9f3e1fbdfd8646e68711c143e1155f45a0172bf6d78021ade3308120
|
|
)
|
|
|
|
vcpkg_check_features(
|
|
OUT_FEATURE_OPTIONS FEATURE_OPTIONS
|
|
FEATURES
|
|
curl BUILD_TRANSPORT_CURL
|
|
winhttp BUILD_TRANSPORT_WINHTTP
|
|
)
|
|
|
|
if(EXISTS "${SOURCE_PATH}/sdk/core/azure-core")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/sdk/core/_")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/sdk/_")
|
|
file(REMOVE_RECURSE "${SOURCE_PATH}/_")
|
|
|
|
file(RENAME "${SOURCE_PATH}/sdk/core/azure-core" "${SOURCE_PATH}/sdk/core/_")
|
|
file(RENAME "${SOURCE_PATH}/sdk/core" "${SOURCE_PATH}/sdk/_")
|
|
file(RENAME "${SOURCE_PATH}/sdk" "${SOURCE_PATH}/_")
|
|
endif()
|
|
|
|
vcpkg_cmake_configure(
|
|
SOURCE_PATH "${SOURCE_PATH}/_/_/_"
|
|
OPTIONS
|
|
${FEATURE_OPTIONS}
|
|
-DWARNINGS_AS_ERRORS=OFF
|
|
-DBUILD_TESTING=OFF
|
|
-DNO_AUTOMATIC_TRANSPORT_BUILD=ON
|
|
)
|
|
|
|
vcpkg_cmake_install()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include")
|
|
vcpkg_cmake_config_fixup()
|
|
file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share")
|
|
vcpkg_copy_pdbs()
|