aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/unit.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/unit.c')
-rw-r--r--tests/unit/unit.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/unit/unit.c b/tests/unit/unit.c
index 9def14fc7..263f6d80f 100644
--- a/tests/unit/unit.c
+++ b/tests/unit/unit.c
@@ -52,17 +52,20 @@
#include <sys/mman.h>
#include <libgen.h>
-#include "json.h"
-
#include "ndpi_config.h"
#include "ndpi_api.h"
+#ifdef HAVE_JSON_H
+#include "json.h" /* JSON-C */
+#endif
+
static struct ndpi_detection_module_struct *ndpi_info_mod = NULL;
static int verbose = 0;
/* *********************************************** */
int serializerUnitTest() {
+#ifdef HAVE_JSON_H
ndpi_serializer serializer, deserializer;
int i, loop_id;
u_int8_t verbose = 0;
@@ -220,6 +223,7 @@ int serializerUnitTest() {
}
printf("%s OK\n", __FUNCTION__);
+#endif
return 0;
}