Module: kamailio Branch: master Commit: 98d6e8df16778e60e2b71f7d1c6bdff2b3a3df61 URL: https://github.com/kamailio/kamailio/commit/98d6e8df16778e60e2b71f7d1c6bdff2b3a3df61
Author: Xenofon Karamanos <[email protected]> Committer: Xenofon Karamanos <[email protected]> Date: 2026-01-21T16:55:57+02:00 sipdump: cmake: Add missing dependencies --- Modified: src/modules/sipdump/CMakeLists.txt --- Diff: https://github.com/kamailio/kamailio/commit/98d6e8df16778e60e2b71f7d1c6bdff2b3a3df61.diff Patch: https://github.com/kamailio/kamailio/commit/98d6e8df16778e60e2b71f7d1c6bdff2b3a3df61.patch --- diff --git a/src/modules/sipdump/CMakeLists.txt b/src/modules/sipdump/CMakeLists.txt index 9c8de963961..0b1d4e11449 100644 --- a/src/modules/sipdump/CMakeLists.txt +++ b/src/modules/sipdump/CMakeLists.txt @@ -1,3 +1,7 @@ file(GLOB MODULE_SOURCES "*.c") add_library(${module_name} SHARED ${MODULE_SOURCES}) + +find_package(Threads REQUIRED) + +target_link_libraries(${module_name} PRIVATE 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!
