File: meson.options

package info (click to toggle)
pcsc-lite 2.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,700 kB
  • sloc: ansic: 13,894; python: 3,231; lex: 609; makefile: 246; sh: 54; xml: 22
file content (55 lines) | stat: -rw-r--r-- 1,395 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
option('libsystemd',
  type : 'boolean',
  description : 'Use systemd for daemon auto start')

option('libudev',
  type : 'boolean',
  description : 'Use libudev (preferred) for USB hotplug')

option('libusb',
  type : 'boolean',
  value : false,
  description : 'Use libusb for USB hotplug')

option('polkit',
  type : 'boolean',
  description : 'Use polkit to enforce access control')

option('usb',
  type : 'boolean',
  description : 'Support USB readers')

option('serial',
  type : 'boolean',
  description : 'Support serial readers')

option('serialconfdir',
  type : 'string',
  value : '/etc/reader.conf.d',
  description : 'Path for serial configuration files')

option('usbdropdir',
  type : 'string',
  value : '/usr/lib/pcsc/drivers',
  description : 'Path for USB drivers')

option('ipcdir',
  type : 'string',
  value : '/run/pcscd',
  description : 'Direcrory for pcsc-lite internal communication socket')

option('systemdunit',
  type : 'combo',
  choices : ['user', 'system'],
  value : 'user',
  description : 'Systemd unit directory to use')

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

option('filter_names',
  type : 'boolean',
  value : true,
  description : 'reader filtering using PCSCLITE_FILTER_IGNORE_READER_NAMES and PCSCLITE_FILTER_EXTEND_READER_NAMES')