diff options
author | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-29 13:05:04 +0200 |
---|---|---|
committer | Kjell Ahlstedt <kjellahlstedt@gmail.com> | 2020-09-29 13:05:04 +0200 |
commit | 8bbc3037f20240c5e4d77fbdf4f1e83b49705e39 (patch) | |
tree | 74668ddc544c64309b75819b48fe87f9732bf0be /meson.build | |
parent | 0b3f24d6e3063161d36fb4e4bd6ef4e848541b01 (diff) |
Require cairo >= 1.12.0
Has been a requirement for a long time, but configure.ac
and meson.build had not been updated.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 399a70c..0181f97 100644 --- a/meson.build +++ b/meson.build @@ -93,7 +93,7 @@ install_pkgconfigdir = install_libdir / 'pkgconfig' # cairomm_dep (created in cairomm/meson.build): # Dependencies when using the cairomm library. sigcxx_req = '>= 2.6.0' -cairo_req = '>= 1.10.0' +cairo_req = '>= 1.12.0' # There are pkg-config files for sigc++ on MSVC, so just use that. sigcxx_dep = dependency('sigc++-2.0', version: sigcxx_req) |