forked from iputils/iputils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeson_options.txt
42 lines (37 loc) · 1.73 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
# Copyright (c) Iputils Project, 2017-2021
# local edition: yvs, 2024
# features
option('CAP', type: 'boolean', value: true,
description: 'Build with linux capabilities (libcap)')
option('IDN', type: 'boolean', value: true,
description: 'IDN support (transparently via libc, or directly with libidn2)')
option('NLS', type: 'boolean', value: true,
description: 'NLS support (gettext)')
option('RFC4620', type: 'boolean', value: false,
description: 'PING6 NodeInfo client (RFC4620)')
# executables
option('BUILD_PING', type: 'boolean', value: true,
description: 'Build ping')
option('BUILD_ARPING', type: 'boolean', value: true,
description: 'Build arping')
option('BUILD_CLOCKDIFF', type: 'boolean', value: true,
description: 'Build clockdiff')
option('BUILD_TRACEPATH', type: 'boolean', value: true,
description: 'Build tracepath')
option('BUILD_GAI', type: 'boolean', value: true,
description: 'Build gai tool')
# extra
option('TESTS', type: 'boolean', value: true,
description: 'Include tests')
option('DOCGEN', type: 'boolean', value: false,
description: 'Generate man/html from xml templates')
option('INSTALL_WITH_CAPS', type: 'boolean', value: false,
description: 'Set linux capabilities at installation')
option('NEED_NET_RAW', type: 'boolean', value: true,
description: 'cap_net_raw+p is needed to ping')
option('INSTALL_WITH_SUID', type: 'boolean', value: false,
description: 'Set suid bit at installation')
option('NONCE_MEMORY', type: 'boolean', value: false,
description: 'PING6 NodeInfo nonce memory')
option('ARPING_DEFAULT_DEVICE', type: 'string', value: '',
description: 'Default device for arping')