build: fix sysprof default options
authorChristian Hergert <chergert@redhat.com>
Thu, 26 May 2022 05:52:34 +0000 (22:52 -0700)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 26 May 2022 12:24:52 +0000 (08:24 -0400)
Sysprof just recently cleaned up it's meson_options.txt and this makes
the tracking of the master branch match the new values.

meson.build

index a1e62712fc045000049259bc0082a4da420d198b..d9612c59e6e07f242fa65e3381f9b28629e07728 100644 (file)
@@ -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'],