# HG changeset patch # User Sebastien Jodogne # Date 1582666327 -3600 # Node ID fd302ec6a5027d0feea34f07e171bf2cb737d36a # Parent 4922bdd046ddb952757338be2f38e13abedbde40 fix for ubuntu 16.04 diff -r 4922bdd046dd -r fd302ec6a502 Core/DicomParsing/FromDcmtkBridge.cpp --- a/Core/DicomParsing/FromDcmtkBridge.cpp Tue Feb 25 21:44:09 2020 +0100 +++ b/Core/DicomParsing/FromDcmtkBridge.cpp Tue Feb 25 22:32:07 2020 +0100 @@ -1388,7 +1388,7 @@ LOG(WARNING) << "Private creator should not be empty while creating a private tag: " << tag.Format(); } -#if DCMTK_VERSION_NUMBER >= 361 +#if DCMTK_VERSION_NUMBER >= 362 DcmTag key(tag.GetGroup(), tag.GetElement()); if (tag.IsPrivate()) { @@ -1544,7 +1544,7 @@ } case EVR_UL: // unsigned long -#if DCMTK_VERSION_NUMBER >= 361 +#if DCMTK_VERSION_NUMBER >= 362 case EVR_OL: // other long (requires byte-swapping) #endif {