Logged In: NO

I managed to compile the package after changing the following:

line 864:
from if (!SetImageInfo(source_info, TRUE, &exception))
to if (!SetImageInfo(source_info, MagickTrue, &exception))

line 900:
from thumbnail = CloneImage(source, 0, 0, 0, &exception);
to thumbnail = CloneImage(source, 0, 0, MagickFalse,
&exception);

line 934:
from thumbnail = CloneImage(source, 0, 0, 0, &exception);
to thumbnail = CloneImage(source, 0, 0, MagickFalse,
&exception);

But you seem to have some more syntax errors from the
ImageMagick headers. I didn't have those.