Skip to content

Commit

Permalink
build: fix sysprof default options
Browse files Browse the repository at this point in the history
Sysprof just recently cleaned up it's meson_options.txt and this makes
the tracking of the master branch match the new values.
  • Loading branch information
chergert committed May 26, 2022
1 parent 393893b commit 2694d81
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -685,12 +685,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'],
Expand All @@ -699,12 +699,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'],
Expand Down

0 comments on commit 2694d81

Please sign in to comment.