Source: orhanc-gdcm Version: 1.1-2 Severity: serious tags: patch Hello, the new orthanc moved some include headers and now the Logging.h features are not automatically included anymore by Plugin.cpp file.
The "quick and dirty" fix might be to add the include, to have again LOG() functionality. I don't know if there is a better place to put this include header, but the following at least fixes the build: --- orthanc-gdcm-1.1.orig/Plugin/Plugin.cpp +++ orthanc-gdcm-1.1/Plugin/Plugin.cpp @@ -26,6 +26,7 @@ #include <MultiThreading/Semaphore.h> #include <Toolbox.h> +#include <Logging.h> #include <gdcmFileExplicitFilter.h> #include <gdcmImageChangePhotometricInterpretation.h> #include <gdcmImageChangeTransferSyntax.h> G.