Ticket #206 (closed defect: duplicate)
WebGUI won't allow add of png files
Reported by: | kmaclean | Owned by: | kmaclean |
---|---|---|---|
Priority: | major | Milestone: | WebSite 0.2.1 |
Component: | Web Site | Version: | Website 0.2 |
Keywords: | Cc: |
Description
Error in WebGUI mod_perl log:
[Sun Sep 16 22:18:56 2007] [notice] Apache/2.0.58 (Unix) WebGUI/7.3.22 mod_ssl/2.0.58 OpenSSL/0.9.7i mod_apreq2-20051231/2.5.7 mod_perl/2.0.2 Perl/v5.8.8 configured -- resuming normal operations /data/wre/prereqs/apache/bin/httpd: symbol lookup error: /data/wre/prereqs/imagemagick/lib/ImageMagick-6.3.0/modules-Q16/coders/png.so: undefined symbol: png_get_asm_flags
patch:
--- ImageMagick-6.3.0/coders/png.c.ark 2006-11-26 14:57:27.000000000 +0100 +++ ImageMagick-6.3.0/coders/png.c 2006-11-26 14:58:38.000000000 +0100 @@ -1753,7 +1753,7 @@ #endif #if defined(PNG_USE_PNGGCCRD) && defined(PNG_ASSEMBLER_CODE_SUPPORTED) \ -&& (PNG_LIBPNG_VER >= 10200) +&& (PNG_LIBPNG_VER >= 10200) && defined(__i386__) /* Setting MMX flags doesn't work on x86_64, and if a box is neither x86 nor x86_64, this is useless anyway */ /* Disable thread-unsafe features of pnggccrd */ if (png_access_version_number() >= 10200) {
described in this thread.
Change History
Note: See
TracTickets for help on using
tickets.