diff options
author | Viktor Szakats <commit@vsz.me> | 2023-12-14 04:59:04 +0000 |
---|---|---|
committer | Viktor Szakats <commit@vsz.me> | 2023-12-14 04:59:04 +0000 |
commit | 906e10ea83472110616d28831bc000a3e5ab4225 (patch) | |
tree | 93016cf4269a652f4d2d53b997f5cd864d8b4686 | |
parent | fccbb9b556e4922380c296ee03364fb2cde87d13 (diff) | |
download | portable-906e10ea83472110616d28831bc000a3e5ab4225.tar.gz portable-906e10ea83472110616d28831bc000a3e5ab4225.tar.bz2 portable-906e10ea83472110616d28831bc000a3e5ab4225.zip |
try fixing missing tls-compat for tests
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 32b5b15..bba5a02 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt | |||
@@ -414,10 +414,10 @@ set(LIBTLS_LIBS tls ${PLATFORM_LIBS}) | |||
414 | # libraries for regression test | 414 | # libraries for regression test |
415 | if(BUILD_SHARED_LIBS) | 415 | if(BUILD_SHARED_LIBS) |
416 | set(OPENSSL_TEST_LIBS ssl-static crypto-static ${PLATFORM_LIBS} compat_obj) | 416 | set(OPENSSL_TEST_LIBS ssl-static crypto-static ${PLATFORM_LIBS} compat_obj) |
417 | set(LIBTLS_TEST_LIBS tls-static ${OPENSSL_TEST_LIBS}) | 417 | set(LIBTLS_TEST_LIBS tls-static ${OPENSSL_TEST_LIBS} tls_compat_obj) |
418 | else() | 418 | else() |
419 | set(OPENSSL_TEST_LIBS ssl crypto ${PLATFORM_LIBS} compat_obj) | 419 | set(OPENSSL_TEST_LIBS ssl crypto ${PLATFORM_LIBS} compat_obj) |
420 | set(LIBTLS_TEST_LIBS tls ${PLATFORM_LIBS} compat_obj) | 420 | set(LIBTLS_TEST_LIBS tls ${PLATFORM_LIBS} compat_obj tls_compat_obj) |
421 | endif() | 421 | endif() |
422 | 422 | ||
423 | if(OPENSSLDIR STREQUAL "") | 423 | if(OPENSSLDIR STREQUAL "") |