no way to avoid the typedef for supporting old json releases
[ppastats.git] / src / lp_json.h
index 51df15e..99add45 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 jeanfi@gmail.com
+ * Copyright (C) 2011-2014 jeanfi@gmail.com
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
 
 #include <json/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;
+#endif
+
 #include "lp.h"
 
 struct bpph **json_object_to_bpph_list(json_object *o);