1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

webrtc: add missing libnice dependency and bump libdatachannel version

Signed-off-by: Steffen Vogel <post@steffenvogel.de>
This commit is contained in:
Steffen Vogel 2022-10-21 09:12:10 +00:00 committed by Philipp Jungkamp
parent 2d4783599f
commit 1e46b4e1e9
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -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 && \