Bump pango req
authorMatthias Clasen <mclasen@redhat.com>
Mon, 29 Nov 2021 14:27:00 +0000 (09:27 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 3 Dec 2021 02:24:24 +0000 (21:24 -0500)
Require pango 1.50.

.gitlab-ci/test-msys2.sh
meson.build

index 8cfc30f0bdef3e551df1ca97f344e4bece22dd38..4c59a26a9ddebc27be64e00552d4118edb0e2a40 100644 (file)
@@ -48,7 +48,7 @@ if ! pkg-config --atleast-version=2.66.0 glib-2.0; then
 fi
 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
     meson setup _pango_build _pango
     meson compile -C _pango_build
index c388521a0cda3ca7d788c4ffff3dce4332b2b334..630ac9985435c1ce13e2bccc8b816891f0f15b82 100644 (file)
@@ -11,7 +11,7 @@ project('gtk', 'c',
         license: 'LGPL-2.1-or-later')
 
 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'
 cairo_req          = '>= 1.14.0'
 gdk_pixbuf_req     = '>= 2.30.0'
@@ -292,7 +292,7 @@ elif cc.get_id() == 'gcc' or cc.get_id() == 'clang'
     '-Wuninitialized',
     '-Wunused',
   ]
-  
+
   extra_warnings = [
     'address',
     'array-bounds',