It finally turned out to be a mixup of the previous version's header files with the new version of the library.
The definition of
Code: Select all
Geometry(unsigned int, unsigned int, unsigned int, unsigned int, bool, bool)
Code: Select all
Geometry(unsigned int, unsigned int, signed int, signed int, bool, bool)
This is merely a post to try and help somebody in the furture. It seems all the other prototypes remained the same, but for good measure make sure your headers match your libraries when you get linking errors="undefined reference to <something>".
You can also use "nm -C libMagick++.so" to see what is available in the library.