Bump pango req

Require pango 1.50.
This commit is contained in:
Matthias Clasen 2021-11-29 09:27:00 -05:00
parent be949496ac
commit 4058b80d56
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ if ! pkg-config --atleast-version=2.66.0 glib-2.0; then
fi fi
pkg-config --modversion glib-2.0 pkg-config --modversion glib-2.0
if ! pkg-config --atleast-version=1.49.3 pango; then if ! pkg-config --atleast-version=1.50.0 pango; then
git clone https://gitlab.gnome.org/GNOME/pango.git _pango git clone https://gitlab.gnome.org/GNOME/pango.git _pango
meson setup _pango_build _pango meson setup _pango_build _pango
meson compile -C _pango_build meson compile -C _pango_build

View File

@ -11,7 +11,7 @@ project('gtk', 'c',
license: 'LGPL-2.1-or-later') license: 'LGPL-2.1-or-later')
glib_req = '>= 2.66.0' glib_req = '>= 2.66.0'
pango_req = '>= 1.49.3' # keep this in sync with .gitlab-ci/test-msys.sh pango_req = '>= 1.50.0' # keep this in sync with .gitlab-ci/test-msys.sh
fribidi_req = '>= 0.19.7' fribidi_req = '>= 0.19.7'
cairo_req = '>= 1.14.0' cairo_req = '>= 1.14.0'
gdk_pixbuf_req = '>= 2.30.0' gdk_pixbuf_req = '>= 2.30.0'
@ -292,7 +292,7 @@ elif cc.get_id() == 'gcc' or cc.get_id() == 'clang'
'-Wuninitialized', '-Wuninitialized',
'-Wunused', '-Wunused',
] ]
extra_warnings = [ extra_warnings = [
'address', 'address',
'array-bounds', 'array-bounds',