fixed compilation issue concerning json_bool not declared
authorJean-Philippe Orsini <jeanfi@gmail.com>
Thu, 13 Feb 2014 10:26:36 +0000 (10:26 +0000)
committerJean-Philippe Orsini <jeanfi@gmail.com>
Thu, 13 Feb 2014 10:26:36 +0000 (10:26 +0000)
on old json lib releasesY

NEWS
src/lp_json.c

diff --git a/NEWS b/NEWS
index 46d67e3..016767e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,7 +2,8 @@ v1.0.0
 ------
 
 * new design for HTML pages.
-
+* fixed compilation issue with old json lib releases using
+  boolean type and not defining json_bool.
 
 * v0.0.9
 ** Fixed compilation issue related to 'boolean' type.
index c9379c5..ddb8f31 100644 (file)
 #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
+typedef boolean json_bool;
+#endif
+
 static time_t json_to_time(json_object *json)
 {
        const char *str;