summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2021-02-25 00:31:31 +0000
committerTim-Philipp Müller <tim@centricular.com>2021-08-26 23:40:12 +0100
commit38f0186560156ac7dd26d55239f95bf87f79fcf3 (patch)
tree842cd320dfe1285c4f591c23e1c9aca9baf5f38c /meson.build
parent923715f2e9acec31f6af406f39e14c36f9f7365c (diff)
downloadcairo-38f0186560156ac7dd26d55239f95bf87f79fcf3.tar.gz
meson: rely on automatic wrap promotion from subprojects
Don't ship wrap files for things that are only dependencies of dependencies, such as gperf (for fontconfig), or libffi + proxy-libintl (for glib). Instead, let Meson use the wraps that these subprojects ship, which Meson will pick up automatically since v56, so there's no need for us to ship these wraps any more. Bump the Meson requirement to 0.56 accordingly. Fix expat package dep for fedora ci and bump the tag so it gets picked up. See https://mesonbuild.com/Release-notes-for-0-56-0.html#wraps-from-subprojects-are-automatically-promoted Closes #445
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index f10a0067b..996a0fce6 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('cairo', 'c', 'cpp',
- meson_version: '>= 0.54.0',
+ meson_version: '>= 0.56.0',
version: run_command(find_program('version.py'), check: true).stdout().strip(),
default_options: ['warning_level=2'],
)