From 0a193b2af4e8bb5fa703a5873a8bf7d493ee0f1a Mon Sep 17 00:00:00 2001 From: Sebastian Kemper Date: Fri, 28 Jul 2017 21:51:19 +0200 Subject: [PATCH] net/asterisk-13.x: prevent libsrtp2 detection Asterisk 13 looks for libsrtp2. Unfortunately it also looks for a header which libsrtp2 does not make public: res_srtp.c:44:33: fatal error: srtp2/crypto_types.h: No such file or directory compilation terminated. This causes the asterisk build to fail. Fix this by disabling libsrtp2 detection in Asterisk 13. Signed-off-by: Sebastian Kemper --- net/asterisk-13.x/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/net/asterisk-13.x/Makefile b/net/asterisk-13.x/Makefile index 005b7ae..324d5a3 100644 --- a/net/asterisk-13.x/Makefile +++ b/net/asterisk-13.x/Makefile @@ -227,6 +227,7 @@ CONFIGURE_ARGS+= \ --enable-xmldoc CONFIGURE_VARS += \ + ac_cv_lib_srtp2_srtp_init=no \ ac_cv_path_ac_pt_CONFIG_LIBXML2=$(STAGING_DIR)/host/bin/xml2-config AST_MENUSELECT_OPTS = \ -- 2.30.2