From 97ace6b816ceb033d90a170fd9d33f5407df5fed Mon Sep 17 00:00:00 2001 From: George Joseph <gjoseph@digium.com> Date: Tue, 18 Jan 2022 07:04:24 -0700 Subject: [PATCH] bundled_pjproject: Fix srtp detection Reverted recent change that set '--with-external-srtp' instead of '--without-external-srtp'. Since Asterisk handles all SRTP, we don't need it enabled in pjproject at all. ASTERISK-29867 Change-Id: I2ce1bdd30abd21c062eac8f8fefe9b898787b801 --- third-party/pjproject/Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/pjproject/Makefile.rules b/third-party/pjproject/Makefile.rules index b92a4cba88..e76a753e58 100644 --- a/third-party/pjproject/Makefile.rules +++ b/third-party/pjproject/Makefile.rules @@ -37,7 +37,7 @@ PJPROJECT_CONFIG_OPTS = $(PJPROJECT_CONFIGURE_OPTS) --prefix=/opt/pjproject \ --disable-ipp \ --disable-libwebrtc \ --without-external-pa \ - --with-external-srtp + --without-external-srtp ifneq ($(AST_DEVMODE),yes) PJPROJECT_CONFIG_OPTS += --disable-resample --disable-g711-codec -- GitLab