From: Sebastian Kemper Date: Sun, 17 Apr 2022 08:57:20 +0000 (+0200) Subject: asterisk: add --without-libxslt to configure X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=refs%2Fpull%2F759%2Fhead;p=feed%2Ftelephony.git asterisk: add --without-libxslt to configure Since upstream commit b40c4d59b1dd803cad79060fb5b5a48d249ba578 "--disable-xmldoc" does no longer prevent the linking to libxslt, if available. If that's the case one is greeted with the following error: Package asterisk is missing dependencies for the following libraries: libxslt.so.1 This commit explicitly disables the use of libxslt, to avoid the dependency. Signed-off-by: Sebastian Kemper --- diff --git a/net/asterisk/Makefile b/net/asterisk/Makefile index 196a7e1..be621d6 100644 --- a/net/asterisk/Makefile +++ b/net/asterisk/Makefile @@ -573,6 +573,7 @@ CONFIGURE_ARGS+= \ --without-pjproject-bundled \ --with-libedit="$(STAGING_DIR)/usr" \ --with-libxml2 \ + --without-libxslt \ $(if $(CONFIG_PACKAGE_$(PKG_NAME)-res-snmp),--with-netsnmp="$(STAGING_DIR)/usr",--without-netsnmp) \ --without-newt \ --without-osptk \