summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-09-04 09:41:20 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-09-04 09:41:20 -0400
commitce09db1401a20b303e6312b6db44ace1ddb6797c (patch)
treef6c276be5daa85602e7b7112ce5c00509813eafc
parented964144834cf8668977fe50d64b1fd7096e0403 (diff)
downloadgtk+-text-rendering-fixes.tar.gz
Bump pango req to 1.49.1text-rendering-fixes
We are using pango api that was introduced in 1.49.1 without ifdefs, so we should require it.
-rw-r--r--.gitlab-ci/test-msys2.sh2
-rw-r--r--meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci/test-msys2.sh b/.gitlab-ci/test-msys2.sh
index a7a907d8dc..d5ade5e6c9 100644
--- a/.gitlab-ci/test-msys2.sh
+++ b/.gitlab-ci/test-msys2.sh
@@ -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.0 pango; then
+if ! pkg-config --atleast-version=1.49.1 pango; then
git clone https://gitlab.gnome.org/GNOME/pango.git _pango
meson setup _pango_build _pango
meson compile -C _pango_build
diff --git a/meson.build b/meson.build
index c6c69c8504..c0b5407a0d 100644
--- a/meson.build
+++ b/meson.build
@@ -11,7 +11,7 @@ project('gtk', 'c',
license: 'LGPL-2.1-or-later')
glib_req = '>= 2.66.0'
-pango_req = '>= 1.49.0' # keep this in sync with .gitlab-ci/test-msys.sh
+pango_req = '>= 1.49.1' # 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'