Remove sysprof leftovers

This is a followup to 5dd0d39a6b.
This commit is contained in:
Matthias Clasen 2023-09-22 17:33:09 -04:00
parent d65dc6c730
commit fdcb1d92c5
2 changed files with 0 additions and 21 deletions

View File

@ -642,23 +642,9 @@ if not get_option('sysprof').disabled()
],
)
cdata.set('HAVE_SYSPROF', libsysprof_capture_dep.found())
libsysprof_dep = dependency('sysprof-4',
required: false,
default_options: [
'agent=false',
'examples=false',
'gtk=false',
'tests=false',
'tools=false',
'libsysprof=true',
'sysprofd=none',
'help=false',
],
)
profiler_enabled = true
else
libsysprof_capture_dep = disabler()
libsysprof_dep = disabler()
profiler_enabled = false
endif

View File

@ -146,10 +146,3 @@ foreach t: gtk_tests
dependencies: [libgtk_dep, libm],
)
endforeach
if libsysprof_dep.found()
executable('testperf',
sources: 'testperf.c',
dependencies: [libsysprof_dep, platform_gio_dep, libm],
)
endif