# HG changeset patch # User Sebastien Jodogne # Date 1608536849 -3600 # Node ID 0c4ff5609548f18e9921da895c639186eb7fb57a # Parent ee846712f5df304e90f999b7e4353b00c19a6a44 upgraded to jsoncpp 1.9.4 diff -r ee846712f5df -r 0c4ff5609548 NEWS --- a/NEWS Mon Dec 21 08:41:13 2020 +0100 +++ b/NEWS Mon Dec 21 08:47:29 2020 +0100 @@ -2,7 +2,7 @@ =============================== * Upgraded dependencies for static builds (notably on Windows): - - jsoncpp 1.9.3 + - jsoncpp 1.9.4 Version 1.8.2 (2020-12-18) diff -r ee846712f5df -r 0c4ff5609548 OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake --- a/OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake Mon Dec 21 08:41:13 2020 +0100 +++ b/OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake Mon Dec 21 08:47:29 2020 +0100 @@ -27,9 +27,9 @@ set(JSONCPP_MD5 "3a8072ca6a1fa9cbaf7715ae625f134f") add_definitions(-DORTHANC_LEGACY_JSONCPP=1) else() - set(JSONCPP_SOURCES_DIR ${CMAKE_BINARY_DIR}/jsoncpp-1.9.3) - set(JSONCPP_URL "http://orthanc.osimis.io/ThirdPartyDownloads/jsoncpp-1.9.3.tar.gz") - set(JSONCPP_MD5 "288bedd396758709e517fcc4acad6ac2") + set(JSONCPP_SOURCES_DIR ${CMAKE_BINARY_DIR}/jsoncpp-1.9.4) + set(JSONCPP_URL "http://orthanc.osimis.io/ThirdPartyDownloads/jsoncpp-1.9.4.tar.gz") + set(JSONCPP_MD5 "4757b26ec89798c5247fa638edfdc446") add_definitions(-DORTHANC_LEGACY_JSONCPP=0) set(JSONCPP_CXX11 ON) endif() diff -r ee846712f5df -r 0c4ff5609548 OrthancServer/UnitTestsSources/VersionsTests.cpp --- a/OrthancServer/UnitTestsSources/VersionsTests.cpp Mon Dec 21 08:41:13 2020 +0100 +++ b/OrthancServer/UnitTestsSources/VersionsTests.cpp Mon Dec 21 08:47:29 2020 +0100 @@ -190,7 +190,7 @@ #if ORTHANC_LEGACY_JSONCPP == 1 ASSERT_STREQ("0.10.6", JSONCPP_VERSION_STRING); #elif ORTHANC_LEGACY_JSONCPP == 0 - ASSERT_STREQ("1.9.3", JSONCPP_VERSION_STRING); + ASSERT_STREQ("1.9.4", JSONCPP_VERSION_STRING); #else # error Macro ORTHANC_LEGACY_JSONCPP should be set #endif