-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmeson_options.txt
64 lines (52 loc) · 1.38 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
option('bc',
type: 'boolean', value: false,
description: 'Build classic FreeBSD bc/dc'
)
option('color_ls',
type: 'boolean', value: true,
description: 'Enable color ls(1) (needs terminfo)'
)
option('openssl',
type: 'feature', value: 'enabled',
description: 'Use OpenSSL (required by some tools, optional elsewhere)'
)
option('libedit',
type: 'feature', value: 'enabled',
description: 'Use libedit (needed by bc(1))'
)
option('zlib',
type: 'feature', value: 'enabled',
description: 'Use zlib for gzip(1)'
)
option('lzma',
type: 'feature', value: 'enabled',
description: 'Use liblzma for gzip(1)'
)
option('bzip2',
type: 'feature', value: 'enabled',
description: 'Use bzip2 for gzip(1)'
)
option('zstd',
type: 'feature', value: 'enabled',
description: 'Use zstd for gzip(1)'
)
option('pam',
type: 'feature', value: 'disabled',
description: 'Use PAM'
)
option('tiny',
type: 'feature', value: 'disabled',
description: 'Also build tiny versions of some of the tools'
)
option('chimera_realpath',
type: 'feature', value: 'auto',
description: 'Use custom implementation of realpath/readlink'
)
option('install-lib',
type: 'boolean', value: 'true',
description: 'Whether to install chimerautils library'
)
option('selinux',
type: 'feature', value: 'auto',
description: 'Whether to enable SELinux awareness'
)