Amend the fix for issue #282

The previous fix did not properly update cmake and Android builds.
This commit is contained in:
Administrator 2016-05-02 14:08:49 +02:00
parent 2e74e05370
commit e62bce8761
2 changed files with 8 additions and 0 deletions

View File

@ -36,4 +36,8 @@
otherwise to 0. */
#define JSON_HAVE_LOCALECONV 0
/* Maximum recursion depth for parsing JSON input.
This limits the depth of e.g. array-within-array constructions. */
#define JSON_PARSER_MAX_DEPTH 16384
#endif

View File

@ -60,5 +60,9 @@
#define JSON_HAVE_LOCALECONV @JSON_HAVE_LOCALECONV@
/* Maximum recursion depth for parsing JSON input.
This limits the depth of e.g. array-within-array constructions. */
#define JSON_PARSER_MAX_DEPTH 16384
#endif