diff options
-rwxr-xr-x | configure | 1 | ||||
-rw-r--r-- | flowtop/Makefile | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -178,6 +178,7 @@ EOF MISSING_DEFS=1 tools_remove "trafgen" tools_remove "netsniff-ng" + tools_remove "flowtop" else echo "[YES]" fi diff --git a/flowtop/Makefile b/flowtop/Makefile index 03f628e..fcef59e 100644 --- a/flowtop/Makefile +++ b/flowtop/Makefile @@ -21,6 +21,7 @@ flowtop-objs = xmalloc.o \ hash.o \ dissector_eth.o \ dissector_80211.o \ + dissector_netlink.o \ dissector.o \ proto_none.o \ tprintf.o \ @@ -31,7 +32,8 @@ ifeq ($(CONFIG_GEOIP), 1) flowtop-objs += geoip.o endif -flowtop-eflags = $(shell pkg-config --cflags ncurses) +flowtop-eflags = $(shell pkg-config --cflags ncurses) \ + $(shell pkg-config --cflags libnl-3.0) flowtop-confs = tcp.conf \ udp.conf \ |