This is an automated email from the ASF dual-hosted git repository.
jdanek pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git
The following commit(s) were added to refs/heads/main by this push:
new f54423f2d PROTON-2788: Add missing OpenSSL linking to the static
proton tls lib (#418)
f54423f2d is described below
commit f54423f2d2daed54ea926c31138d9891732b190e
Author: Jiri Daněk <[email protected]>
AuthorDate: Sat Jan 6 21:06:41 2024 +0100
PROTON-2788: Add missing OpenSSL linking to the static proton tls lib (#418)
---
c/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt
index d98f0e1ed..65c588e46 100644
--- a/c/CMakeLists.txt
+++ b/c/CMakeLists.txt
@@ -555,7 +555,7 @@ if (qpid-proton-tls)
if (BUILD_STATIC_LIBS)
add_library (qpid-proton-tls-static STATIC ${qpid-proton-tls})
target_compile_definitions(qpid-proton-tls-static PUBLIC
PROTON_DECLARE_STATIC)
- target_link_libraries (qpid-proton-tls-static PRIVATE ${PLATFORM_LIBS})
+ target_link_libraries (qpid-proton-tls-static PRIVATE ${SSL_LIB}
${PLATFORM_LIBS})
set_target_properties(qpid-proton-tls-static PROPERTIES
EXPORT_NAME tls)
set(TARGET_qpid-proton-tls-static qpid-proton-tls-static)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]