Bug in libMagick.so with 6.2.7-7

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

The undefined references comes from the MagickWand library. You can fix it by adding -lWand to the loader command line. Take a look at the koffice configure.ac or configure.in script and look for where it locates the ImageMagick libraries. See if it just adds -lMagick++ and/or -lMagick to the LD_FLAGS. If so, change this to -lWand -lMagick++ -lMagick and notify the koffice folks to fix their configure script.
Last edited by magick on 2006-05-25T17:46:00-07:00, edited 1 time in total.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

MagickWand is not necessary for the typical ImageMagick install which is shared with modules. However, we need to add the MagickWand dependancy to the MagickCore Magick-config file. We will get this patch in the next point release due within a week. Thanks for the problem report.
Post Reply