From: Christian Hergert Date: Thu, 26 May 2022 05:52:34 +0000 (-0700) Subject: build: fix sysprof default options X-Git-Tag: archive/raspbian/4.7.2+ds-3+rpi1^2^2~15^2~1^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=bc09956d79f72cf7ea046b47115b7f3b1a63a8f3;p=gtk4.git build: fix sysprof default options Sysprof just recently cleaned up it's meson_options.txt and this makes the tracking of the master branch match the new values. --- diff --git a/meson.build b/meson.build index a1e62712fc..d9612c59e6 100644 --- a/meson.build +++ b/meson.build @@ -681,12 +681,12 @@ if not get_option('sysprof').disabled() libsysprof_capture_dep = dependency('sysprof-capture-4', version: sysprof_req, required: get_option('sysprof'), default_options: [ - 'enable_examples=false', - 'enable_gtk=false', - 'enable_tests=false', - 'enable_tools=false', + 'examples=false', + 'gtk=false', + 'tests=false', + 'tools=false', 'libsysprof=true', - 'with_sysprofd=none', + 'sysprofd=none', 'help=false', ], fallback: ['sysprof', 'libsysprof_capture_dep'], @@ -695,12 +695,12 @@ if not get_option('sysprof').disabled() libsysprof_dep = dependency('sysprof-4', required: false, default_options: [ - 'enable_examples=false', - 'enable_gtk=false', - 'enable_tests=false', - 'enable_tools=false', + 'examples=false', + 'gtk=false', + 'tests=false', + 'tools=false', 'libsysprof=true', - 'with_sysprofd=none', + 'sysprofd=none', 'help=false', ], fallback: ['sysprof', 'libsysprof_dep'],