summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2020-10-08 19:23:23 -0400
committerMatthias Clasen <mclasen@redhat.com>2020-10-09 07:43:25 -0400
commiteb647299d465599c99fd3845f4d0a5258139b842 (patch)
tree993ecd2aedf41a014104978e8528adc5dd1bd25b
parente7aa10342ba748a8845841c7b284b8ab746fe3d1 (diff)
downloadgtk+-eb647299d465599c99fd3845f4d0a5258139b842.tar.gz
build: Require sysprof 3.38.0
We use sysprof_collector_request_counters, which was introduced in sysprof 3.38.0.
-rw-r--r--meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index ab4e0a1f31..85a605c2c9 100644
--- a/meson.build
+++ b/meson.build
@@ -34,6 +34,7 @@ graphene_req = '>= 1.9.1'
epoxy_req = '>= 1.4'
cloudproviders_req = '>= 0.3.1'
xkbcommon_req = '>= 0.2.0'
+sysprof_req = '>= 3.38.0'
gnome = import('gnome')
@@ -680,7 +681,7 @@ cdata.set('HAVE_CLOUDPROVIDERS', cloudproviders_dep.found())
# libsysprof-capture support
if not get_option('sysprof').disabled()
- libsysprof_capture_dep = dependency('sysprof-capture-4',
+ libsysprof_capture_dep = dependency('sysprof-capture-4', version: sysprof_req,
required: get_option('sysprof'),
default_options: [
'enable_examples=false',