Module: kamailio Branch: 6.0 Commit: c22ffcab6b7b544cc9ae6c3cb055ef74b56a5933 URL: https://github.com/kamailio/kamailio/commit/c22ffcab6b7b544cc9ae6c3cb055ef74b56a5933
Author: Morten Tryfoss <[email protected]> Committer: Xenofon Karamanos <[email protected]> Date: 2026-02-25T11:22:28Z auth_ephemeral: Add link to OpenSSL in CMakeLists (cherry picked from commit 3fd1afe60fe37e0ed87fe3b3c5acb6da9dd613f0) --- Modified: src/modules/auth_ephemeral/CMakeLists.txt --- Diff: https://github.com/kamailio/kamailio/commit/c22ffcab6b7b544cc9ae6c3cb055ef74b56a5933.diff Patch: https://github.com/kamailio/kamailio/commit/c22ffcab6b7b544cc9ae6c3cb055ef74b56a5933.patch --- diff --git a/src/modules/auth_ephemeral/CMakeLists.txt b/src/modules/auth_ephemeral/CMakeLists.txt index 9c8de963961..e584457c683 100644 --- a/src/modules/auth_ephemeral/CMakeLists.txt +++ b/src/modules/auth_ephemeral/CMakeLists.txt @@ -1,3 +1,7 @@ file(GLOB MODULE_SOURCES "*.c") add_library(${module_name} SHARED ${MODULE_SOURCES}) + +find_package(OpenSSL REQUIRED) + +target_link_libraries(${module_name} PRIVATE OpenSSL::SSL OpenSSL::Crypto) \ No newline at end of file _______________________________________________ Kamailio - Development Mailing List -- [email protected] To unsubscribe send an email to [email protected] Important: keep the mailing list in the recipients, do not reply only to the sender!
