summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorSami Kerola <kerolasa@iki.fi>2018-12-20 20:45:07 +0000
committerSami Kerola <kerolasa@iki.fi>2018-12-22 19:10:11 +0000
commit2615a527209bb408b54028ef6405075cadd4541b (patch)
tree7987606b95725c8ad4a6c6c68b05fca008718444 /meson_options.txt
parente15b82bb41600c5ac9fa86278000ffcf127abecd (diff)
downloadiputils-2615a527209bb408b54028ef6405075cadd4541b.tar.gz
build-sys: change build defaults
Recently added localization support should needs to be turned on by default to gain traction from translations. Without this it is hopeless to get contributions going on. The rarpd is obsoleted by BOOTP and later DHCP protocols. There should not be reason why this executable ought to be build and packaged by default to pretty much all distributions. The traceroute6 is not needed, tracepath -6 can perform the same function, so drop it from default build as well. Addresses: https://github.com/iputils/iputils/issues/162 CC: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 94069a4..f938ff6 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -17,7 +17,7 @@ option('BUILD_CLOCKDIFF', type : 'boolean', value : true,
option('BUILD_PING', type : 'boolean', value : true,
description : 'Build ping')
-option('BUILD_RARPD', type : 'boolean', value : true,
+option('BUILD_RARPD', type : 'boolean', value : false,
description : 'Build rarpd')
option('BUILD_RDISC', type : 'boolean', value : true,
@@ -32,7 +32,7 @@ option('BUILD_TFTPD', type : 'boolean', value : true,
option('BUILD_TRACEPATH', type : 'boolean', value : true,
description : 'Build tracepath')
-option('BUILD_TRACEROUTE6', type : 'boolean', value : true,
+option('BUILD_TRACEROUTE6', type : 'boolean', value : false,
description : 'Build traceroute6')
option('BUILD_NINFOD', type : 'boolean', value : true,
@@ -56,5 +56,5 @@ option('USE_SYSFS', type : 'boolean', value : true,
option('systemdunitdir', type: 'string', value: '',
description: 'Directory for systemd units')
-option('USE_GETTEXT', type: 'boolean', value: false,
+option('USE_GETTEXT', type: 'boolean', value: true,
description: 'Enable I18N')