diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | rrdtool/Makefile.in (renamed from rrdtool/Makefile) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1acb6c805..f4436d90b 100644 --- a/configure.ac +++ b/configure.ac @@ -261,7 +261,7 @@ if test "${with_maxminddb+set}" = set; then : fi fi -AC_CONFIG_FILES([Makefile example/Makefile example/Makefile.dpdk tests/Makefile tests/unit/Makefile tests/dga/Makefile libndpi.pc src/include/ndpi_define.h src/lib/Makefile python/Makefile fuzz/Makefile src/include/ndpi_api.h]) +AC_CONFIG_FILES([Makefile example/Makefile example/Makefile.dpdk tests/Makefile tests/unit/Makefile tests/dga/Makefile rrdtool/Makefile libndpi.pc src/include/ndpi_define.h src/lib/Makefile python/Makefile fuzz/Makefile src/include/ndpi_api.h]) AC_CONFIG_FILES([tests/do.sh], [chmod +x tests/do.sh]) AC_CONFIG_HEADERS(src/include/ndpi_config.h) AC_SUBST(GIT_RELEASE) diff --git a/rrdtool/Makefile b/rrdtool/Makefile.in index 0b884c7e9..d25e0bdac 100644 --- a/rrdtool/Makefile +++ b/rrdtool/Makefile.in @@ -1,7 +1,7 @@ INC=-I ../src/include LIBDPI=../src/lib/libndpi.a -LIB=$(LIBDPI) -lrrd -lm -lmaxminddb -lgcrypt +LIB=$(LIBDPI) -lrrd -lm @LIBS@ @ADDITIONAL_LIBS@ @LDFLAGS@ rrd_anomaly: rrd_anomaly.c Makefile $(LIBDPI) $(CC) -g $(INC) rrd_anomaly.c -o rrd_anomaly $(LIB) |