Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
The two methods Magick::Options::fontStyle and Magick::Options::fontWeight use the const keyword for their parameters in the declarations (but not in the implementation). This was introduced here http://git.imagemagick.org/repos/ImageM ... fca#diff-3
and it causes the following link error on Solaris (using the Sun Studio compiler):
Undefined first referenced
symbol in file
void Magick::Options::fontStyle(const MagickCore::StyleType) Magick++/lib/.libs/Magick___lib_libMagick___6_Q16_la-Image.o
void Magick::Options::fontWeight(const unsigned) Magick++/lib/.libs/Magick___lib_libMagick___6_Q16_la-Image.o
Shouldn't the two consts in the declarations in Magick++/lib/Magick++/Options.h simply be removed?