summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flowtop.c1
-rw-r--r--flowtop/Makefile4
2 files changed, 2 insertions, 3 deletions
diff --git a/flowtop.c b/flowtop.c
index 506883b..01a5709 100644
--- a/flowtop.c
+++ b/flowtop.c
@@ -27,7 +27,6 @@
#include "die.h"
#include "xmalloc.h"
#include "conntrack.h"
-#include "ioops.h"
#include "config.h"
#include "str.h"
#include "sig.h"
diff --git a/flowtop/Makefile b/flowtop/Makefile
index 4f9eef3..85acb43 100644
--- a/flowtop/Makefile
+++ b/flowtop/Makefile
@@ -11,7 +11,6 @@ flowtop-libs += -lGeoIP \
endif
flowtop-objs = xmalloc.o \
- ioops.o \
oui.o \
str.o \
sig.o \
@@ -25,7 +24,8 @@ flowtop-objs = xmalloc.o \
flowtop.o
ifeq ($(CONFIG_GEOIP), 1)
-flowtop-objs += geoip.o
+flowtop-objs += geoip.o \
+ ioops.o
endif
flowtop-eflags = $(shell pkg-config --cflags ncurses)