Module: kamailio Branch: master Commit: 0f67c919e2a0b06e6a398867aff47cef7a7db679 URL: https://github.com/kamailio/kamailio/commit/0f67c919e2a0b06e6a398867aff47cef7a7db679
Author: Xenofon Karamanos <[email protected]> Committer: Xenofon Karamanos <[email protected]> Date: 2025-12-09T08:48:38Z cmake: Respect KTLS_INCLUDE_TLSA env variable - KTLS group will include TLSA modules as well when defined - KTLSA group exists when not defined --- Modified: cmake/groups.cmake --- Diff: https://github.com/kamailio/kamailio/commit/0f67c919e2a0b06e6a398867aff47cef7a7db679.diff Patch: https://github.com/kamailio/kamailio/commit/0f67c919e2a0b06e6a398867aff47cef7a7db679.patch --- diff --git a/cmake/groups.cmake b/cmake/groups.cmake index 353611f03be..e4062ca37a8 100644 --- a/cmake/groups.cmake +++ b/cmake/groups.cmake @@ -545,7 +545,7 @@ set(MODULE_GROUP_KMEMCACHED ${MOD_LIST_MEMCACHED}) set(MODULE_GROUP_KTLS_BASIC ${MOD_LIST_TLSDEPS}) # pkg tls module with curl -if(KTLS_INCLUDE_TLSA) +if(DEFINED ENV{KTLS_INCLUDE_TLSA}) set(MODULE_GROUP_KTLS ${MOD_LIST_TLSDEPS} ${MOD_LIST_TLSA}) else() set(MODULE_GROUP_KTLS ${MOD_LIST_TLSDEPS}) @@ -706,6 +706,7 @@ set(MODULE_GROUP_PACKAGE_GROUPS KMEMCACHED KTLS_BASIC KTLS + KTLSA KTLS_WOLFSSL KWEBSOCKET KPRESENCE _______________________________________________ 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!
