From 6925c7ec26423389b252a4cea2428547bcd49dc7 Mon Sep 17 00:00:00 2001 From: Martin Becze Date: Thu, 5 Nov 2020 07:59:43 -0600 Subject: gnu: jsoncpp: Update to 1.9.4 * gnu/packages/serialization.scm (jsoncpp): Update to 1.9.4. * gnu/packages/patches/jsoncpp-fix-inverted-case.patch: Removed old patch. * gnu/local.mk (dist_patch_DATA): Remove old patch. Signed-off-by: Christopher Baines --- .../patches/jsoncpp-fix-inverted-case.patch | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 gnu/packages/patches/jsoncpp-fix-inverted-case.patch (limited to 'gnu/packages/patches/jsoncpp-fix-inverted-case.patch') diff --git a/gnu/packages/patches/jsoncpp-fix-inverted-case.patch b/gnu/packages/patches/jsoncpp-fix-inverted-case.patch deleted file mode 100644 index e4897de1b8..0000000000 --- a/gnu/packages/patches/jsoncpp-fix-inverted-case.patch +++ /dev/null @@ -1,22 +0,0 @@ -This patch fixes a bug and related test failure on platforms where 'char' -is unsigned. - -Taken from upstream: -https://github.com/open-source-parsers/jsoncpp/commit/f11611c8785082ead760494cba06196f14a06dcb - -diff --git a/src/lib_json/json_writer.cpp b/src/lib_json/json_writer.cpp -index 8e06cca2..56195dc1 100644 ---- a/src/lib_json/json_writer.cpp -+++ b/src/lib_json/json_writer.cpp -@@ -178,8 +178,9 @@ static bool isAnyCharRequiredQuoting(char const* s, size_t n) { - - char const* const end = s + n; - for (char const* cur = s; cur < end; ++cur) { -- if (*cur == '\\' || *cur == '\"' || *cur < ' ' || -- static_cast(*cur) < 0x80) -+ if (*cur == '\\' || *cur == '\"' || -+ static_cast(*cur) < ' ' || -+ static_cast(*cur) >= 0x80) - return true; - } - return false; -- cgit v1.2.3