summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSami Kerola <kerolasa@iki.fi>2018-12-20 20:45:07 +0000
committerSami Kerola <kerolasa@iki.fi>2018-12-20 21:08:46 +0000
commit6542a6c3509f6ed373580eaeebba082b0170d534 (patch)
tree24652ae5617c0b71dd63349b4a35f536716a6eb4
parentbc719e0d11c4b8ec9906fe31213d41f67c55a0bb (diff)
downloadiputils-fix-issue-162.tar.gz
build-sys: change gettext and rarpd build defaultsfix-issue-162
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>
-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')