mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2025-12-26 21:30:13 +01:00
meson: drop version requirement to 0.56 so we can build on Bullseye
Looks like the only more recent meson feature we use is for 'exclude_suites' in the valgrind test setup. We can just skip that.
This commit is contained in:
parent
c5aa2c0b60
commit
a95c9e1799
2 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ project('libei', 'c',
|
|||
version: '0.4.1',
|
||||
license: 'MIT',
|
||||
default_options: [ 'c_std=gnu99', 'warning_level=2' ],
|
||||
meson_version: '>= 0.57.0')
|
||||
meson_version: '>= 0.56.0')
|
||||
|
||||
pkgconfig = import('pkgconfig')
|
||||
fs = import('fs')
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ test('eierpecken',
|
|||
dependencies: [dep_unittest, dep_libei, dep_libeis]))
|
||||
|
||||
valgrind = find_program('valgrind', required : false)
|
||||
if valgrind.found()
|
||||
if valgrind.found() and meson.version().version_compare('> 0.57')
|
||||
add_test_setup('valgrind',
|
||||
exe_wrapper : [ valgrind,
|
||||
'--leak-check=full',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue