ImageMagick-6.7.2-7 on centos 5.5

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
daniel2d2art
Posts: 4
Joined: 2011-09-21T05:10:12-07:00
Authentication code: 8675308

ImageMagick-6.7.2-7 on centos 5.5

Post by daniel2d2art »

Compiling get this error:


$ sudo make
...
...
CC utilities/animate.o
CCLD utilities/animate
/usr/local/lib/libfpx.so: undefined reference to `__cxa_pure_virtual'
/usr/local/lib/libfpx.so: undefined reference to `__gxx_personality_v0'
/usr/local/lib/libfpx.so: undefined reference to `operator delete[](void*)'
/usr/local/lib/libfpx.so: undefined reference to `std::ios_base::Init::Init()'
/usr/local/lib/libfpx.so: undefined reference to `operator new(unsigned long)'
/usr/local/lib/libfpx.so: undefined reference to `operator delete(void*)'
/usr/local/lib/libfpx.so: undefined reference to `vtable for __cxxabiv1::__class_type_info'
/usr/local/lib/libfpx.so: undefined reference to `std::ios_base::Init::~Init()'
/usr/local/lib/libfpx.so: undefined reference to `vtable for __cxxabiv1::__si_class_type_info'
/usr/local/lib/libfpx.so: undefined reference to `operator new[](unsigned long)'
/usr/local/lib/libfpx.so: undefined reference to `vtable for __cxxabiv1::__vmi_class_type_info'
collect2: ld returned 1 exit status
make[1]: *** [utilities/animate] Error 1
make[1]: Leaving directory `/usr/local/src/ImageMagick-6.7.2-7'
make: *** [all] Error 2
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: ImageMagick-6.7.2-7 on centos 5.5

Post by magick »

Add --without-fpx to your configure command line. That removes the Flashpix dependency that is causing the linker problem.
daniel2d2art
Posts: 4
Joined: 2011-09-21T05:10:12-07:00
Authentication code: 8675308

Re: ImageMagick-6.7.2-7 on centos 5.5

Post by daniel2d2art »

we used this:

$ sudo ./configure --with-fpx=no

After make, we pass test correctly

thx!
Post Reply