1
0
Fork 0
mirror of https://github.com/warmcat/libwebsockets.git synced 2025-03-09 00:00:04 +01:00

openssl: make sure tests have -ldl v2

https://github.com/warmcat/libwebsockets/issues/1662
This commit is contained in:
Andy Green 2020-01-17 12:33:28 +00:00
parent 329adcfbba
commit 068a54a340

View file

@ -1943,6 +1943,11 @@ if (LWS_HAVE_LIBCAP)
list(APPEND LIB_LIST cap )
endif()
if (UNIX)
list(APPEND LIB_LIST dl)
endif()
# Setup the linking for all libs.
foreach (lib ${LWS_LIBRARIES})
target_link_libraries(${lib} ${LIB_LIST})
@ -1960,10 +1965,6 @@ if (LWS_WITH_ZLIB)
endif()
endif()
if (UNIX)
list(APPEND LIB_LIST dl)
endif()
CHECK_FUNCTION_EXISTS(SSL_CTX_set1_param LWS_HAVE_SSL_CTX_set1_param)
CHECK_FUNCTION_EXISTS(SSL_set_info_callback LWS_HAVE_SSL_SET_INFO_CALLBACK)
CHECK_FUNCTION_EXISTS(X509_VERIFY_PARAM_set1_host LWS_HAVE_X509_VERIFY_PARAM_set1_host)