-
-
Notifications
You must be signed in to change notification settings - Fork 49
/
meson_options.txt
111 lines (108 loc) · 2.74 KB
/
meson_options.txt
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
## meson_options.txt for dinit
## You can set dinit's options in here:
## Please see BUILD_MESON for more information.
## General options
option(
'shutdown-prefix',
type : 'string',
value : '',
description : 'Name prefix for "shutdown", "halt", "soft-reboot" and "reboot" commands (if they are built).'
)
option(
'dinit-control-socket-path',
type : 'string',
value : '/run/dinitctl',
description : 'Default full path to the control socket, for when Dinit runs as system service manager.'
)
option(
'unit-tests',
type : 'boolean',
value : false,
description : 'Building Unit tests. by default its disabled.'
)
option(
'igr-tests',
type : 'boolean',
value : false,
description : 'Building Integration tests. by default its disabled.'
)
option(
'fuzzer',
type : 'boolean',
value : false,
description : 'Building fuzz target'
)
option(
'use-utmpx',
type : 'feature',
value : 'auto',
description : 'Whether to build support for manipulating the utmp/utmpx database via the related POSIX functions.'
)
option(
'use-initgroups',
type : 'boolean',
value : true,
description : 'Whether to use initgroups to initialize supplementary groups for run-as services.'
)
option(
'dinit-sbindir',
type : 'string',
value : '/sbin',
description : 'Default full path to the dinit executables. For some reasons dinit dont follow default sbindir. see BUILD_MESON for more info.'
)
option(
'man-pages',
type : 'boolean',
value : true,
description : 'Building & installing man-pages.'
)
option(
'default-auto-restart',
type : 'combo',
choices : ['ALWAYS', 'ON_FAILURE', 'NEVER'],
value : 'ALWAYS',
description : 'Always/"on-failure"/never auto-restart for services by default. See BUILD_MESON for more info.'
)
option(
'default-start-timeout',
type : 'integer',
value : 60,
description : 'Default start-timeout for services in seconds'
)
option(
'default-stop-timeout',
type : 'integer',
value : 10,
description : 'Default stop-timeout for services in seconds'
)
## Linux specific options
option(
'support-cgroups',
type : 'feature',
value : 'auto',
description : 'Enable Cgroups support.'
)
option(
'support-capabilities',
type : 'feature',
value : 'auto',
description : 'Enable capabilities support.'
)
option(
'support-ioprio',
type : 'feature',
value : 'auto',
description : 'Enable ioprio support.'
)
option(
'support-oom-adj',
type : 'feature',
value : 'auto',
description : 'Enable OOM score adjustment support.'
)
option(
'build-shutdown',
type : 'feature',
value : 'auto',
description : 'Building shutdown/reboot/soft-reboot/halt or not.'
)