diff options
author | Luca Deri <deri@ntop.org> | 2016-11-27 12:21:02 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2016-11-27 12:21:02 +0100 |
commit | be81d33495f627a7994750078e692d5506618a4f (patch) | |
tree | 11e830c4c3ab8c3450a33117cedc0975b5362943 | |
parent | 035a290ab5a728b90e5f7a3ccfc2e4a71c946781 (diff) |
Disabled coverage (work in progress)
-rw-r--r-- | example/Makefile.am | 2 | ||||
-rw-r--r-- | src/lib/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index c941d6734..a6f276669 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -1,7 +1,7 @@ bin_PROGRAMS = ndpiReader AM_CPPFLAGS = -I$(top_srcdir)/src/include @PCAP_INC@ -AM_CFLAGS = @PTHREAD_CFLAGS@ --coverage +AM_CFLAGS = @PTHREAD_CFLAGS@ # --coverage LDADD = $(top_builddir)/src/lib/libndpi.la @JSON_C_LIB@ @PTHREAD_LIBS@ @PCAP_LIB@ AM_LDFLAGS = -static @DL_LIB@ diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am index 954f7b54f..aefde3a49 100644 --- a/src/lib/Makefile.am +++ b/src/lib/Makefile.am @@ -1,6 +1,6 @@ lib_LTLIBRARIES = libndpi.la -CFLAGS += -fPIC -DPIC --coverage +CFLAGS += -fPIC -DPIC # --coverage libndpi_la_CPPFLAGS = -I$(top_srcdir)/src/include/ -I$(top_srcdir)/src/lib/third_party/include/ libndpi_la_LDFLAGS = -version-info 1:0:0 -export-symbols $(top_srcdir)/libndpi.sym |