summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Marangi2025-11-21 15:02:24 +0000
committerChristian Marangi2025-11-21 15:02:24 +0000
commit92e14ade2714ff01564b9f32c0552fdf5e463222 (patch)
tree2d1d4a779589bc773f4cd4bb0b1d9f4254a42867
parentf4c73b0482c3a169d99cf8575b35b6e3c3512ded (diff)
downloadtelephony-92e14ade2714ff01564b9f32c0552fdf5e463222.tar.gz
rtpproxy: add missing dependency for libsrtp2
New rtpproxy package adds support for libsrtp2 if detected. In the context of buildbot every package gets selected and libsrtp2 support gets selected automatically with rtpproxy. Add this extra dependency directly to rtpproxy to fix build error. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
-rw-r--r--net/rtpproxy/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rtpproxy/Makefile b/net/rtpproxy/Makefile
index f3893ab..cf6c0ed 100644
--- a/net/rtpproxy/Makefile
+++ b/net/rtpproxy/Makefile
@@ -37,7 +37,7 @@ endef
define Package/rtpproxy
$(call Package/rtpproxy/Default)
- DEPENDS:=+libatomic +libpthread +librt
+ DEPENDS:=+libsrtp2 +libatomic +libpthread +librt
TITLE:=RTP (Realtime Transport Protocol) proxy
MENU:=1
endef