gstreamer: update meson version requirements (#7397)

* gstreamer: update meson version requirements

Fixes build error:

./../src/gstreamer/meson.build:1:0: ERROR: Meson version is 0.59.0 but project requires >= 0.60.0

* gstreamer: update glib to 2.72.0

Fixes a divide by zero when configuring the internal gnulib.
This commit is contained in:
Matthew Waters 2022-03-20 03:53:34 +11:00 committed by GitHub
parent 1ae57df24d
commit 36d589d9d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ RUN apt-get update && \
apt-get install -y make autoconf automake libtool build-essential pkg-config bison flex gettext \
libffi-dev liblzma-dev libtheora-dev libogg-dev zlib1g-dev libcairo2-dev \
python3-pip ninja-build && \
pip3 install meson==0.59.0
pip3 install meson==0.61.3
# We must install libvorbis from scratch as otherwise we will run into
# undefined functions in Ubuntu 20.04
@ -31,7 +31,7 @@ RUN git clone --depth 1 https://gitlab.xiph.org/xiph/vorbis.git && \
make -j$(nproc) && \
make install
ADD https://ftp.gnome.org/pub/gnome/sources/glib/2.64/glib-2.64.2.tar.xz $SRC
ADD https://ftp.gnome.org/pub/gnome/sources/glib/2.72/glib-2.72.0.tar.xz $SRC
# Checkout repository
RUN git clone --depth 1 --recursive https://gitlab.freedesktop.org/gstreamer/gstreamer.git gstreamer