Mercurial > hg > orthanc
changeset 6016:295f51db7976
merge
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 24 Feb 2025 08:03:02 +0100 |
parents | 78b1934b4ce3 (diff) 97cfdcdf47e3 (current diff) |
children | 90ecf7d849cd |
files | NEWS |
diffstat | 2 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/NEWS Fri Feb 21 16:10:06 2025 +0100 +++ b/NEWS Mon Feb 24 08:03:02 2025 +0100 @@ -23,6 +23,8 @@ * GET /series/../study now also contain LastUpdate field: https://discourse.orthanc-server.org/t/lastupdate-coherency/5524 * Recovered compatibility with Windows XP that was broken because of DCMTK 3.6.9 +* Enabled support of the 1.2.840.10008.1.2.1.99 transfer syntax + (Deflated Explicit VR Little Endian) in static builds Version 1.12.6 (2025-01-22)
--- a/OrthancFramework/Resources/CMake/DcmtkConfigurationStatic-3.6.9.cmake Fri Feb 21 16:10:06 2025 +0100 +++ b/OrthancFramework/Resources/CMake/DcmtkConfigurationStatic-3.6.9.cmake Mon Feb 24 08:03:02 2025 +0100 @@ -203,6 +203,14 @@ message(FATAL_ERROR "Invalid value for DCMTK_LOCALE_BACKEND: ${DCMTK_LOCALE_BACKEND}") endif() + +# Enable support of the 1.2.840.10008.1.2.1.99 transfer syntax in +# static builds of Orthanc (Deflated Explicit VR Little +# Endian). Defining "WITH_ZLIB" is always OK, as zlib is part of the +# core dependencies of the Orthanc framework. +# https://discourse.orthanc-server.org/t/transcoding-to-deflated-transfer-syntax-fails/ +set(WITH_ZLIB ON) + CONFIGURE_FILE( ${DCMTK_SOURCES_DIR}/CMake/osconfig.h.in ${DCMTK_SOURCES_DIR}/config/include/dcmtk/config/osconfig.h)