Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Clone and build GStreamer:
git clone https://gitlab.freedesktop.org/gstreamer/gstreamer.git

cd ~/gstreamer
git switch -c "1.24.12" "tags/1.24.12"
git switch -c "1.26.1" "tags/1.26.1"
meson setup -Dexamples=disabled -Dtests=disabled -Dvaapi=enabled -Dgst-examples=disabled --buildtype=release --prefix=/opt/intel/dlstreamer/gstreamer --libdir=lib/ --libexecdir=bin/ build/
ninja -C build
sudo env PATH=~/python3venv/bin:$PATH meson install -C build/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# ==============================================================================
# Copyright (C) 2018-2024 Intel Corporation
# Copyright (C) 2018-2025 Intel Corporation
#
# SPDX-License-Identifier: MIT
# ==============================================================================
Expand Down Expand Up @@ -28,6 +28,12 @@ make install
cd ..
rm -rf librdkafka-1.5.0

# remove symbolic links from previous installation
if [[ -L "/usr/local/lib/libpaho-mqtt3c.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3c.so; fi
if [[ -L "/usr/local/lib/libpaho-mqtt3cs.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3cs.so; fi
if [[ -L "/usr/local/lib/libpaho-mqtt3as.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3as.so; fi
if [[ -L "/usr/local/lib/libpaho-mqtt3a.so" ]]; then unlink /usr/local/lib/libpaho-mqtt3a.so; fi

curl -sSL https://github.com/eclipse/paho.mqtt.c/archive/v1.3.4.tar.gz | tar -xz
cd paho.mqtt.c-1.3.4 || exit
make
Expand Down