merged from plib
[ppastats.git] / src / lp_json.h
index cfb803d..f40c5c3 100644 (file)
 #ifndef _PPASTATS_LP_JSON_H_
 #define _PPASTATS_LP_JSON_H_
 
-#include <json/json.h>
+#include <json.h>
+
+#include <config.h>
+
+/* Declares json_bool to have consistent code even with
+   old json lib releases using boolean instead of json_bool.*/
+#ifndef HAVE_JSON_BOOL
+typedef int json_bool;
+#endif
 
 #include "lp.h"