mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-20 06:50:05 +01:00
Fix meson options default values
The keyword is 'value', not 'default'. With meson 0.43 this now stops
building.
https://bugs.freedesktop.org/show_bug.cgi?id=103162
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
(cherry picked from commit 4bb5ce5b74)
This commit is contained in:
parent
d6c757f8e9
commit
1d5c60ccf3
1 changed files with 5 additions and 5 deletions
|
|
@ -1,20 +1,20 @@
|
|||
option('udev-dir',
|
||||
type: 'string',
|
||||
default: '',
|
||||
value: '',
|
||||
description: 'udev base directory [default=$prefix/lib/udev]')
|
||||
option('libwacom',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
value: true,
|
||||
description: 'Use libwacom for tablet identification (default=true)')
|
||||
option('debug-gui',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
value: true,
|
||||
description: 'Enable the "debug-gui" feature in the libinput tool [default=true]')
|
||||
option('tests',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
value: true,
|
||||
description: 'Build the tests [default=true]')
|
||||
option('documentation',
|
||||
type: 'boolean',
|
||||
default: true,
|
||||
value: true,
|
||||
description: 'Build the documentation [default=true]')
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue