Module: kamailio Branch: master Commit: a4589658e78a79a4d9561ee50eae208360513f86 URL: https://github.com/kamailio/kamailio/commit/a4589658e78a79a4d9561ee50eae208360513f86
Author: Xenofon Karamanos <[email protected]> Committer: Xenofon Karamanos <[email protected]> Date: 2026-01-21T16:55:57+02:00 ims_ipsec_pcscf: cmake: Add missing dependencies --- Modified: src/modules/ims_ipsec_pcscf/CMakeLists.txt --- Diff: https://github.com/kamailio/kamailio/commit/a4589658e78a79a4d9561ee50eae208360513f86.diff Patch: https://github.com/kamailio/kamailio/commit/a4589658e78a79a4d9561ee50eae208360513f86.patch --- diff --git a/src/modules/ims_ipsec_pcscf/CMakeLists.txt b/src/modules/ims_ipsec_pcscf/CMakeLists.txt index d7df85ac7a9..e93f160ae80 100644 --- a/src/modules/ims_ipsec_pcscf/CMakeLists.txt +++ b/src/modules/ims_ipsec_pcscf/CMakeLists.txt @@ -6,4 +6,6 @@ find_package(PkgConfig REQUIRED) pkg_check_modules(libmnl REQUIRED IMPORTED_TARGET libmnl) add_library(libmnl::libmnl ALIAS PkgConfig::libmnl) -target_link_libraries(${module_name} PRIVATE libmnl::libmnl) +find_package(Threads REQUIRED) + +target_link_libraries(${module_name} PRIVATE libmnl::libmnl Threads::Threads) _______________________________________________ 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!
