# HG changeset patch # User Sebastien Jodogne # Date 1608536473 -3600 # Node ID ee846712f5df304e90f999b7e4353b00c19a6a44 # Parent ab5b68f7e948c11597e59f407cead761e6176fed upgraded to jsoncpp 1.9.3 diff -r ab5b68f7e948 -r ee846712f5df NEWS --- a/NEWS Fri Dec 18 17:41:42 2020 +0100 +++ b/NEWS Mon Dec 21 08:41:13 2020 +0100 @@ -1,6 +1,9 @@ Pending changes in the mainline =============================== +* Upgraded dependencies for static builds (notably on Windows): + - jsoncpp 1.9.3 + Version 1.8.2 (2020-12-18) ========================== diff -r ab5b68f7e948 -r ee846712f5df OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake --- a/OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake Fri Dec 18 17:41:42 2020 +0100 +++ b/OrthancFramework/Resources/CMake/JsonCppConfiguration.cmake Mon Dec 21 08:41:13 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.8.4) - set(JSONCPP_URL "http://orthanc.osimis.io/ThirdPartyDownloads/jsoncpp-1.8.4.tar.gz") - set(JSONCPP_MD5 "fa47a3ab6b381869b6a5f20811198662") + 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") add_definitions(-DORTHANC_LEGACY_JSONCPP=0) set(JSONCPP_CXX11 ON) endif() diff -r ab5b68f7e948 -r ee846712f5df OrthancServer/UnitTestsSources/VersionsTests.cpp --- a/OrthancServer/UnitTestsSources/VersionsTests.cpp Fri Dec 18 17:41:42 2020 +0100 +++ b/OrthancServer/UnitTestsSources/VersionsTests.cpp Mon Dec 21 08:41:13 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.8.4", JSONCPP_VERSION_STRING); + ASSERT_STREQ("1.9.3", JSONCPP_VERSION_STRING); #else # error Macro ORTHANC_LEGACY_JSONCPP should be set #endif