Skip to content

Just kick CI for test. #994

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 13.2.1
* Fixed async socket close blocking problem. (#977)


## 13.2.0
* Added locks for timers. (#973)
* Added logs. (#971)
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ strategy:

steps:
- powershell: |
choco install --confirm --limitoutput --no-progress openssl
choco install --confirm --limitoutput --no-progress openssl --version=3.1.1
displayName: 'install openssl'

- powershell: |
Expand All @@ -153,7 +153,7 @@ steps:
if (!$?) {
return Write-Error "cmake failed"
}
cmake --build . --config Release
cmake --build . --config Release --verbose
if (!$?) {
return Write-Error "cmake --build failed"
}
Expand Down
6 changes: 5 additions & 1 deletion include/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ IF(MQTT_USE_STATIC_OPENSSL)
TARGET_LINK_LIBRARIES(${PROJECT_NAME} INTERFACE $<$<BOOL:${MQTT_USE_TLS}>:${CMAKE_DL_LIBS} ZLIB::ZLIB>)
ENDIF()

TARGET_LINK_LIBRARIES(${PROJECT_NAME} INTERFACE $<$<BOOL:${MQTT_USE_TLS}>:OpenSSL::SSL>)
TARGET_LINK_LIBRARIES(
${PROJECT_NAME} INTERFACE
$<$<BOOL:${MQTT_USE_TLS}>:OpenSSL::SSL>
$<$<BOOL:${MQTT_USE_TLS}>:OpenSSL::Crypto>
)

TARGET_INCLUDE_DIRECTORIES(${PROJECT_NAME}
INTERFACE
Expand Down
Loading