Module: kamailio Branch: master Commit: 3fd1afe60fe37e0ed87fe3b3c5acb6da9dd613f0 URL: https://github.com/kamailio/kamailio/commit/3fd1afe60fe37e0ed87fe3b3c5acb6da9dd613f0
Author: Morten Tryfoss <[email protected]> Committer: Morten Tryfoss <[email protected]> Date: 2026-02-23T21:23:19+01:00 auth_ephemeral: Add link to OpenSSL in CMakeLists --- Modified: src/modules/auth_ephemeral/CMakeLists.txt --- Diff: https://github.com/kamailio/kamailio/commit/3fd1afe60fe37e0ed87fe3b3c5acb6da9dd613f0.diff Patch: https://github.com/kamailio/kamailio/commit/3fd1afe60fe37e0ed87fe3b3c5acb6da9dd613f0.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!
