diff options
| author | Sebastian Kemper | 2023-01-09 11:04:46 +0000 |
|---|---|---|
| committer | Sebastian Kemper | 2023-01-09 11:04:53 +0000 |
| commit | 022701e067f2892c3ce8558487ff817f6a0e7042 (patch) | |
| tree | 82a6b951435a45275eacd1262bec5ee2955ae80b | |
| parent | 3cf295a468ea56b2d6b5c165211d3651983bb91b (diff) | |
| download | telephony-022701e067f2892c3ce8558487ff817f6a0e7042.tar.gz | |
rtpengine: update libwebsockets dependency
The rtpengine daemon requires lws_get_ssl(). This function is not
available in libwebsockets-mbedtls. This commit updates the dependency
to libwebsockets-openssl.
Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| -rw-r--r-- | net/rtpengine/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rtpengine/Makefile b/net/rtpengine/Makefile index 5967cb3..fdd396c 100644 --- a/net/rtpengine/Makefile +++ b/net/rtpengine/Makefile @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=rtpengine PKG_VERSION:=10.5.2.6 -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-mr$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/sipwise/rtpengine/tar.gz/mr$(PKG_VERSION)? @@ -49,7 +49,7 @@ ENGINE_DEPENDS := \ +libopenssl \ +libpcap \ +libpcre \ - +libwebsockets \ + +libwebsockets-openssl \ +xmlrpc-c-client \ +zlib |