Two problems prevent from compiling MAJA in debug:
- A patch on itkGaussianOperator.hxx changes a warning message to a debug message. But the debug message doesn't work in debug mode because itk::GaussianOperator doesn't inherit from itk::Object. It was fixed in a more recent version of ITK.
- A call to itkSetMacro in vnsDispatchZoneVectorImageFilter.h tries to print the parameter, but std::vector doesn't implement the << operator. It is better to write the Setter manually. This solution also allow to move the vector instead of copying it.