Module: kamailio Branch: master Commit: 7269a4c281d3e4f1a5d89e62c97bc17a04779201 URL: https://github.com/kamailio/kamailio/commit/7269a4c281d3e4f1a5d89e62c97bc17a04779201
Author: Xenofon Karamanos <[email protected]> Committer: Xenofon Karamanos <[email protected]> Date: 2026-01-21T16:55:57+02:00 ims_registrar_pcscf: cmake: Add missing dependencies --- Modified: src/modules/ims_registrar_pcscf/CMakeLists.txt --- Diff: https://github.com/kamailio/kamailio/commit/7269a4c281d3e4f1a5d89e62c97bc17a04779201.diff Patch: https://github.com/kamailio/kamailio/commit/7269a4c281d3e4f1a5d89e62c97bc17a04779201.patch --- diff --git a/src/modules/ims_registrar_pcscf/CMakeLists.txt b/src/modules/ims_registrar_pcscf/CMakeLists.txt index 41758eb30c6..193b7476568 100644 --- a/src/modules/ims_registrar_pcscf/CMakeLists.txt +++ b/src/modules/ims_registrar_pcscf/CMakeLists.txt @@ -3,5 +3,11 @@ file(GLOB MODULE_SOURCES "*.c") add_library(${module_name} SHARED ${MODULE_SOURCES}) find_package(LibXml2 REQUIRED) +find_package(Threads REQUIRED) -target_link_libraries(${module_name} PRIVATE LibXml2::LibXml2) +find_library(LIBRT rt) +if(LIBRT) + target_link_libraries(${module_name} PRIVATE ${LIBRT}) +endif() + +target_link_libraries(${module_name} PRIVATE LibXml2::LibXml2 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!
