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

fix cannot find -lre

Signed-off-by: Alexandra <alexandra.bach@eonerc.rwth-aachen.de>
This commit is contained in:
Alexandra 2024-05-02 09:45:37 +00:00
parent 0c55d82893
commit 1d6f9846dd
2 changed files with 19 additions and 19 deletions

View file

@ -176,10 +176,10 @@ pkg:docker:
TARGET: app
parallel:
matrix:
- DISTRO: debian
PLATFORM: linux/amd64
ARCH: x86_64
TRIPLET: x86_64-linux-gnu
# - DISTRO: debian
# PLATFORM: linux/amd64
# ARCH: x86_64
# TRIPLET: x86_64-linux-gnu
# - DISTRO: debian
# PLATFORM: linux/arm/v7
# ARCH: armhf

View file

@ -290,21 +290,21 @@ if ! pkg-config "comedilib >= 0.11.0" && \
fi
# Build & Install libre
if ! pkg-config "libre >= 3.6.0" && \
should_build "libre" "for the rtp node-type"; then
git clone ${GIT_OPTS} --branch v3.6.0 https://github.com/baresip/re.git
mkdir -p re/build
pushd re/build
cmake -DUSE_LIBREM=OFF \
-DUSE_BFCP=OFF \
-DUSE_PCP=OFF \
-DUSE_RTMP=OFF \
-DUSE_SIP=OFF \
-DLIBRE_BUILD_STATIC=OFF \
${CMAKE_OPTS} ..
make ${MAKE_OPTS} install
popd
fi
# if ! pkg-config "libre >= 3.6.0" && \
# should_build "libre" "for the rtp node-type"; then
# git clone ${GIT_OPTS} --branch v3.6.0 https://github.com/baresip/re.git
# mkdir -p re/build
# pushd re/build
# cmake -DUSE_LIBREM=OFF \
# -DUSE_BFCP=OFF \
# -DUSE_PCP=OFF \
# -DUSE_RTMP=OFF \
# -DUSE_SIP=OFF \
# -DLIBRE_BUILD_STATIC=OFF \
# ${CMAKE_OPTS} ..
# make ${MAKE_OPTS} install
# popd
# fi
# Build & Install nanomsg
if ! pkg-config "nanomsg >= 1.0.0" && \