Skip to content

Commit cb8b063

Browse files
committed
Update installation procedure when building from sources.
1 parent a569b64 commit cb8b063

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

libraries/dl-streamer/docs/source/dev_guide/advanced_install/advanced_install_guide_compilation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Clone and build GStreamer:
8686
git clone https://gitlab.freedesktop.org/gstreamer/gstreamer.git
8787
8888
cd ~/gstreamer
89-
git switch -c "1.24.12" "tags/1.24.12"
89+
git switch -c "1.26.1" "tags/1.26.1"
9090
meson setup -Dexamples=disabled -Dtests=disabled -Dvaapi=enabled -Dgst-examples=disabled --buildtype=release --prefix=/opt/intel/dlstreamer/gstreamer --libdir=lib/ --libexecdir=bin/ build/
9191
ninja -C build
9292
sudo env PATH=~/python3venv/bin:$PATH meson install -C build/

libraries/dl-streamer/scripts/install_metapublish_dependencies.sh

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# ==============================================================================
3-
# Copyright (C) 2018-2024 Intel Corporation
3+
# Copyright (C) 2018-2025 Intel Corporation
44
#
55
# SPDX-License-Identifier: MIT
66
# ==============================================================================
@@ -28,6 +28,12 @@ make install
2828
cd ..
2929
rm -rf librdkafka-1.5.0
3030

31+
# remove symbolic links from previous installation
32+
if [[ -L "/usr/local/lib/libpaho-mqtt3c.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3c.so; fi
33+
if [[ -L "/usr/local/lib/libpaho-mqtt3cs.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3cs.so; fi
34+
if [[ -L "/usr/local/lib/libpaho-mqtt3as.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3as.so; fi
35+
if [[ -L "/usr/local/lib/libpaho-mqtt3a.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3a.so; fi
36+
3137
curl -sSL https://github.com/eclipse/paho.mqtt.c/archive/v1.3.4.tar.gz | tar -xz
3238
cd paho.mqtt.c-1.3.4 || exit
3339
make

0 commit comments

Comments
 (0)