summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-08-04 19:30:20 +0300
committerTobias Klauser <tklauser@distanz.ch>2016-08-05 11:32:47 +0200
commitb073c8e5fd7f8c723680b659bd81afd231ef32f5 (patch)
tree1fb86f5f2c1455848420fd0c52ab5de2b7368c30 /.travis.yml
parent20a5e15443bfbbb7e6624a754832cdce19d462a0 (diff)
build: configure: Allow to compile tools without libnl
With libnl being made optional in commits 20a5e15443bf ("netsniff-ng: Allow to compile without libnl") and c831bcda3e26 ("trafgen: Allow to compile without libnl"), we can now compile netsniff-ng and trafgen without libnl being present. For now we don't consider libnl and libnl-route separately, meaning that if libnl-route is not present, we disable libnl support entirely. Also add a configure option to explicitely disable building netsniff-ng and trafgen with libnl support. Based on original patch by Vadim Kochan. Signed-off-by: Vadim Kochan <vadim4j@gmail.com> Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index fb7dd31..aca9e1a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -34,3 +34,4 @@ script:
- CC=$CC ./configure --disable-geoip && make clean && make CC=$CC
- CC=$CC ./configure --disable-zlib && make clean && make CC=$CC
- CC=$CC ./configure --disable-geoip --disable-zlib && make clean && make CC=$CC
+ - CC=$CC ./configure --disable-libnl && make clean && make CC=$CC