forked from iputils/iputils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
52 lines (35 loc) · 1.86 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
# Copyright (c) Iputils Project, 2017-2021
option('USE_CAP', type : 'boolean', value : true,
description : 'Capability support (with libcap)')
option('USE_IDN', type : 'boolean', value : true,
description : 'IDN support (with libidn2)')
option('BUILD_ARPING', type : 'boolean', value : true,
description : 'Build arping')
option('BUILD_CLOCKDIFF', type : 'boolean', value : true,
description : 'Build clockdiff')
option('BUILD_PING', type : 'boolean', value : true,
description : 'Build ping')
option('BUILD_TRACEPATH', type : 'boolean', value : true,
description : 'Build tracepath')
option('BUILD_MANS', type : 'boolean', value : true,
description : 'Build manuals')
option('BUILD_HTML_MANS', type : 'boolean', value : false,
description : 'Build html manuals')
option('NO_SETCAP_OR_SUID', type : 'boolean', value : true,
description : 'Disable setting setcap or setuid with build-aux/setcap-setuid.sh')
option('SETCAP_OR_SUID_ARPING', type : 'boolean', value : false,
description : 'Set setcap or setuid on arping with build-aux/setcap-setuid.sh')
option('SETCAP_OR_SUID_CLOCKDIFF', type : 'boolean', value : true,
description : 'Set setcap or setuid on clockdiff with build-aux/setcap-setuid.sh')
option('SETCAP_OR_SUID_PING', type : 'boolean', value : true,
description : 'Set setcap or setuid on ping with build-aux/setcap-setuid.sh')
option('ARPING_DEFAULT_DEVICE', type : 'string', value : '',
description : 'Default device for arping')
option('systemdunitdir', type: 'string', value: '',
description: 'Directory for systemd units')
option('INSTALL_SYSTEMD_UNITS', type: 'boolean', value: false,
description: 'Install generated systemd unit files')
option('USE_GETTEXT', type: 'boolean', value: true,
description: 'Enable I18N')
option('SKIP_TESTS', type: 'boolean', value: false,
description: 'Skip tests during build')