Merge branch 'wip/chergert/fix-sysprof-wrapper' into 'main'

build: fix sysprof default options

See merge request GNOME/gtk!4759
This commit is contained in:
Matthias Clasen 2022-05-26 11:43:56 +00:00
commit 511a2f4d03

View File

@ -670,12 +670,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'],
@ -684,12 +684,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'],