From: Christian Hergert Date: Fri, 22 Jul 2022 18:30:21 +0000 (-0700) Subject: build: configure subproject sysprof with -Dagent=false X-Git-Tag: archive/raspbian/4.8.3+ds-2+rpi1~3^2~20^2~4^2~35^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a32b9d8b51ed1edab45b7993c5a92a9a8a86c9a8;p=gtk4.git build: configure subproject sysprof with -Dagent=false Sysprof has a new -Dagent=true build option which allows installing a /usr/bin/sysprof-agent program (simimlar to sysprof-cli). It provides a P2P D-Bus API to the process which can control subprocesses. It's used by IDE tooling to have more control across container boundaries. However, we do not need it for GTK CI. --- diff --git a/meson.build b/meson.build index 1b8f2d0248..2ab7290628 100644 --- a/meson.build +++ b/meson.build @@ -670,6 +670,7 @@ if not get_option('sysprof').disabled() libsysprof_capture_dep = dependency('sysprof-capture-4', version: sysprof_req, required: get_option('sysprof'), default_options: [ + 'agent=false', 'examples=false', 'gtk=false', 'tests=false', @@ -684,6 +685,7 @@ if not get_option('sysprof').disabled() libsysprof_dep = dependency('sysprof-4', required: false, default_options: [ + 'agent=false', 'examples=false', 'gtk=false', 'tests=false',