Many of the c files in this repo have instructions like this in dcmjp2k.cc:
#define INCLUDE_CSTDLIB
#define INCLUDE_CSTDIO
#define INCLUDE_CSTRING
Those instructions are not supported by newer versions of dcmtk and are causing errors during compilation.
They should be replaced by:
#include <cstdlib>
#include <cstdio>
#include <cstring>
and others, respectfully
Many of the c files in this repo have instructions like this in
dcmjp2k.cc:Those instructions are not supported by newer versions of dcmtk and are causing errors during compilation.
They should be replaced by:
and others, respectfully