fixed compilation with newer json lib
[ppastats.git] / src / lp_json.h
index 99add45..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 boolean json_bool;
+typedef int json_bool;
 #endif
 
 #include "lp.h"