fix json_bool
[ppastats.git] / src / lp_json.c
index ddb8f31..e02ef62 100644 (file)
 #include <string.h>
 #include <time.h>
 
+#include <config.h>
 #include "lp_json.h"
 #include "lp_ws.h"
 
 /* Declares json_bool to have consistent code even with
    old json lib releases using boolean instead of json_bool.*/
-#ifndef json_bool
+#ifndef HAVE_JSON_BOOL
 typedef boolean json_bool;
 #endif