summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSami Kerola <kerolasa@iki.fi>2019-07-18 19:39:07 +0100
committerSami Kerola <kerolasa@iki.fi>2019-07-21 08:20:14 +0100
commit737d8a91e394518d2ccdaf398bb16283eb8e4a81 (patch)
tree9ba919c5ec82e349ee34349681fbf3f0d6ddfe37
parentaa40e9d395ec14d0a78c2cd28d51dd332755ab08 (diff)
downloadiputils-737d8a91e394518d2ccdaf398bb16283eb8e4a81.tar.gz
tftpd: stop building by default
This tftpd implementation requires inetd to run, that is quite a rarity, and there are better implementations such as dnsmasq available. Lets stop building the software until (if ever) re-implementation is done. Acked-by: Petr Vorel <petr.vorel@gmail.com> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
-rw-r--r--.travis.yml2
-rw-r--r--meson_options.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index caec7d7..8218395 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -29,6 +29,6 @@ install:
- pip3 install meson
script:
- set -e
- - meson builddir -DBUILD_RARPD=true -DBUILD_TRACEROUTE6=true -DBUILD_HTML_MANS=true
+ - meson builddir -DBUILD_RARPD=true -DBUILD_TFTPD=true -DBUILD_TRACEROUTE6=true -DBUILD_HTML_MANS=true
- ninja -C builddir
- sudo sh -c 'PATH="/root/build:$PATH" make install'
diff --git a/meson_options.txt b/meson_options.txt
index ba1a669..f695408 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -26,7 +26,7 @@ option('BUILD_RDISC', type : 'boolean', value : true,
option('ENABLE_RDISC_SERVER', type : 'boolean', value : true,
description : 'Enable rinfod server code')
-option('BUILD_TFTPD', type : 'boolean', value : true,
+option('BUILD_TFTPD', type : 'boolean', value : false,
description : 'Build tftpd')
option('BUILD_TRACEPATH', type : 'boolean', value : true,