From 1e46b4e1e97653973f172a00b71f1b11f069dd10 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Fri, 21 Oct 2022 09:12:10 +0000 Subject: [PATCH] webrtc: add missing libnice dependency and bump libdatachannel version Signed-off-by: Steffen Vogel --- packaging/deps.sh | 2 +- packaging/docker/Dockerfile.fedora | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packaging/deps.sh b/packaging/deps.sh index 19e761bfd..bbd859c2f 100644 --- a/packaging/deps.sh +++ b/packaging/deps.sh @@ -319,7 +319,7 @@ fi # Build & Install libdatachannel if ! cmake --find-package -DNAME=LibDataChannel -DCOMPILER_ID=GNU -DLANGUAGE=CXX -DMODE=EXIST && \ [ -z "${SKIP_LIBDATACHANNEL}" ]; then - git clone ${GIT_OPTS} --branch v0.17.8 https://github.com/paullouisageneau/libdatachannel && pushd libdatachannel + git clone ${GIT_OPTS} --branch v0.17.11 https://github.com/paullouisageneau/libdatachannel && pushd libdatachannel git submodule update --init --recursive --depth 1 mkdir build && pushd build diff --git a/packaging/docker/Dockerfile.fedora b/packaging/docker/Dockerfile.fedora index 03c15f742..19a7c9177 100644 --- a/packaging/docker/Dockerfile.fedora +++ b/packaging/docker/Dockerfile.fedora @@ -65,7 +65,8 @@ RUN dnf -y install \ librdmacm-devel \ libusb-devel \ lua-devel \ - hiredis-devel + hiredis-devel \ + libnice-devel # Add local and 64-bit locations to linker paths RUN echo /usr/local/lib >> /etc/ld.so.conf && \