-
Notifications
You must be signed in to change notification settings - Fork 285
/
meson_options.txt
96 lines (77 loc) · 2.28 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
option('runstatedir',
type: 'string',
value: '',
description: 'state directory for sockets, PID files')
option('docs',
type: 'feature',
value: 'auto',
description: 'generate documentation')
option('tests',
type: 'feature',
value: 'auto',
description: 'enable tests')
option('hardening',
type: 'boolean',
value: true,
description: 'add compiler and linker hardening flags')
option('static',
type: 'feature',
value: 'auto',
description: 'statically link dependencies (auto: YES on Windows, NO everywhere else)')
option('systemd',
type: 'feature',
value: 'auto',
description: 'install systemd service files')
option('systemd_dir',
type: 'string',
value: '',
description: 'systemd service directory (defaults to $prefix/lib/systemd/system)')
option('crypto',
type: 'combo',
choices: ['openssl', 'gcrypt', 'nolegacy'],
value: 'openssl',
description: 'which cryptographic library to use')
option('miniupnpc',
type: 'feature',
value: 'disabled',
description: 'miniupnpc support')
option('lzo',
type: 'feature',
value: 'auto',
description: 'lzo compression support')
option('lz4',
type: 'feature',
value: 'auto',
description: 'lz4 compression support')
option('curses',
type: 'feature',
value: 'auto',
description: 'curses support')
option('readline',
type: 'feature',
value: 'auto',
description: 'readline support')
option('zlib',
type: 'feature',
value: 'auto',
description: 'zlib compression support')
option('uml',
type: 'boolean',
value: false,
description: 'User Mode Linux support')
option('tunemu',
type: 'feature',
value: 'auto',
description: 'support for the tunemu driver')
option('vde',
type: 'feature',
value: 'auto',
description: 'support for Virtual Distributed Ethernet')
option('jumbograms',
type: 'boolean',
value: false,
description: 'support for jumbograms (packets up to 9000 bytes)')
option('sandbox',
type: 'feature',
value: 'auto',
description: 'use sandboxing on platforms that support it')