From 1c9278812b55e389e8b127e6f9b97b296ccc6c87 Mon Sep 17 00:00:00 2001 From: Henrique Silva Date: Wed, 1 Apr 2020 14:04:58 +0200 Subject: [PATCH] Link streamApp against seq and pv libs when SNCSEQ is defined This avoids linking problems if the calc lib has been compiled with seq support. --- streamApp/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/streamApp/Makefile b/streamApp/Makefile index ae5dd7e..0b4198e 100644 --- a/streamApp/Makefile +++ b/streamApp/Makefile @@ -68,6 +68,10 @@ PROD_LIBS += sscan endif endif +ifneq ($(words $(SNCSEQ) $(SYNAPPS)), 0) +PROD_LIBS += seq pv +endif + streamApp_DBD += stream.dbd ifdef PCRE