diff options
Diffstat (limited to 'net/netsniff-ng/patches/0003-removed-flowtop-pkg-config-usage-for-ncurses.patch')
-rw-r--r-- | net/netsniff-ng/patches/0003-removed-flowtop-pkg-config-usage-for-ncurses.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/net/netsniff-ng/patches/0003-removed-flowtop-pkg-config-usage-for-ncurses.patch b/net/netsniff-ng/patches/0003-removed-flowtop-pkg-config-usage-for-ncurses.patch new file mode 100644 index 000000000..65b4b7aff --- /dev/null +++ b/net/netsniff-ng/patches/0003-removed-flowtop-pkg-config-usage-for-ncurses.patch @@ -0,0 +1,36 @@ +From 0f1653c82a06567ccb151e17f1fe3ff3c3b465f3 Mon Sep 17 00:00:00 2001 +From: Toni Uhlig <matzeton@googlemail.com> +Date: Mon, 18 May 2020 20:27:32 +0200 +Subject: [PATCH] removed flowtop pkg-config usage for ncurses + +Signed-off-by: Toni Uhlig <matzeton@googlemail.com> +--- + flowtop/Makefile | 6 ++---- + 1 file changed, 2 insertions(+), 4 deletions(-) + +diff --git a/flowtop/Makefile b/flowtop/Makefile +index e001ce8..aeee049 100644 +--- a/flowtop/Makefile ++++ b/flowtop/Makefile +@@ -1,7 +1,6 @@ + flowtop-libs = -lurcu \ + $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs libnetfilter_conntrack 2> /dev/null ) \ +- $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs ncurses 2> /dev/null \ +- || echo '-lncurses') \ ++ -lncurses \ + $(shell PKG_CONFIG_PATH=$(PKG_CONFIG_PATH) $(PKG_CONFIG) --libs tinfo 2> /dev/null ) \ + -lpthread + +@@ -30,8 +29,7 @@ flowtop-objs += geoip.o \ + ioops.o + endif + +-flowtop-eflags = $(shell $(PKG_CONFIG) --cflags ncurses) \ +- $(shell $(PKG_CONFIG) --cflags libnetfilter_conntrack) ++flowtop-eflags = $(shell $(PKG_CONFIG) --cflags libnetfilter_conntrack) + + flowtop-confs = tcp.conf \ + udp.conf \ +-- +2.20.1 + |