From eee6fb6e175287e2285ab47783fdab44c1530eb1 Mon Sep 17 00:00:00 2001 From: Jesper Dangaard Brouer Date: Wed, 18 Dec 2013 22:01:05 +0100 Subject: debian: compile fix for programs using ncurses For some reason the Debian ncurses version does not contain a ncurses.pc pkg-config file. Fix this by echoing "-lncurses" if the command fails: pkg-config --libs ncurses This fix will make ifpps compile on Debian Squeeze 6.0.8. Signed-off-by: Jesper Dangaard Brouer --- flowtop/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'flowtop') diff --git a/flowtop/Makefile b/flowtop/Makefile index b668726..12f8d61 100644 --- a/flowtop/Makefile +++ b/flowtop/Makefile @@ -1,8 +1,9 @@ flowtop-libs = -lGeoIP \ -lurcu \ -lnetfilter_conntrack \ - $(shell pkg-config --libs ncurses) \ - $(shell pkg-config --libs tinfo) \ + $(shell pkg-config --libs ncurses 2> /dev/null \ + || echo '-lncurses') \ + $(shell pkg-config --libs tinfo 2> /dev/null ) \ -lpthread \ -lz -- cgit v1.2.3-54-g00ecf