Skip to content

Commit

Permalink
meson: use true instead of 'true' and fix warning
Browse files Browse the repository at this point in the history
Fixes:
NOTICE: Future-deprecated features used:
 * 1.1.0: {'"boolean option" keyword argument "value" of type str'}
  • Loading branch information
LudovicRousseau committed Jun 23, 2024
1 parent a0b1d52 commit 3d9c562
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions meson.options
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ option('class',

option('composite-as-multislot',
type : 'boolean',
value : 'false',
value : false,
description : 'composite device are seen as multi-slots')

option('embedded',
type : 'boolean',
value : 'false',
value : false,
description : 'for embedded systems [limit RAM and CPU resources by disabling features (log)]')

option('os_log',
type : 'boolean',
value : 'false',
value : false,
description : 'use os_log(3) instead of printf() for debug (Sierra 10.12 and up)]')

option('pcsclite',
Expand All @@ -28,10 +28,10 @@ option('pcsclite',

option('serial',
type : 'boolean',
value : 'false',
value : false,
description : 'enable the driver for the serial CCID readers')

option('zlp',
type : 'boolean',
value : 'false',
value : false,
description : 'enable the Zero Length Packet patch for some Gemalto readers')

0 comments on commit 3d9c562

Please sign in to comment.