summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2022-03-24 11:25:16 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2022-03-24 12:22:58 +0000
commit08395dadcb3fc24f6c50f3a3e1a92a8c06f4fef9 (patch)
tree1d9ad3a32fb403d072e99df9c9e61901ee476e35
parent3162abd8214114392fca93245e1f8275dd9f9d61 (diff)
downloadatk-08395dadcb3fc24f6c50f3a3e1a92a8c06f4fef9.tar.gz
Bump up the required Meson version
Use 0.52. It still is ancient, but that's what Debian stable uses.
-rw-r--r--.gitlab-ci/debian-stable.Dockerfile2
-rw-r--r--.gitlab-ci/fedora-latest.Dockerfile2
-rw-r--r--meson.build2
3 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab-ci/debian-stable.Dockerfile b/.gitlab-ci/debian-stable.Dockerfile
index a430025..bde2607 100644
--- a/.gitlab-ci/debian-stable.Dockerfile
+++ b/.gitlab-ci/debian-stable.Dockerfile
@@ -39,6 +39,6 @@ RUN useradd -u $HOST_USER_ID -ms /bin/bash user
USER user
WORKDIR /home/user
-RUN pip3 install --user meson==0.49.2
+RUN pip3 install --user meson==0.52
ENV LANG=C.UTF-8 LANGUAGE=C.UTF-8 LC_ALL=C.UTF-8
diff --git a/.gitlab-ci/fedora-latest.Dockerfile b/.gitlab-ci/fedora-latest.Dockerfile
index 2faf441..24f476c 100644
--- a/.gitlab-ci/fedora-latest.Dockerfile
+++ b/.gitlab-ci/fedora-latest.Dockerfile
@@ -33,6 +33,6 @@ RUN useradd -u $HOST_USER_ID -ms /bin/bash user
USER user
WORKDIR /home/user
-RUN pip3 install --user meson==0.49.2
+RUN pip3 install --user meson==0.52
ENV LANG C.utf8
diff --git a/meson.build b/meson.build
index a1c7846..168a385 100644
--- a/meson.build
+++ b/meson.build
@@ -6,7 +6,7 @@ project('atk', 'c',
'warning_level=1',
'c_std=c99',
],
- meson_version : '>= 0.49.0')
+ meson_version : '>= 0.52')
cc = meson.get_compiler('c')
host_system = host_machine.system()