Summary: | graphicsmagick failed to build | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Bram Kuijper <a.l.w.kuijper> |
Component: | Individual Port(s) | Assignee: | freebsd-ports-bugs (Nobody) <ports-bugs> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Bram Kuijper
2006-08-04 15:50:13 UTC
The following patch fixes this issue, and may be added to the port. This has been fixed in ImageMagick, but not yet in GraphicsMagick. I'll bug them about it. Best regards, Aron Stansvik --- coders/png.c.orig Thu Aug 17 11:37:53 2006 +++ coders/png.c Thu Aug 17 11:38:50 2006 @@ -1709,7 +1709,7 @@ #if defined(PNG_USE_PNGGCCRD) && defined(PNG_ASSEMBLER_CODE_SUPPORTED) \ && (PNG_LIBPNG_VER >= 10200) /* Disable thread-unsafe features of pnggccrd */ - if (png_access_version() >= 10200) + if (png_access_version_number() >= 10200) { png_uint_32 mmx_disable_mask=0; png_uint_32 asm_flags; @@ -1718,8 +1718,8 @@ | PNG_ASM_FLAG_MMX_READ_FILTER_SUB \ | PNG_ASM_FLAG_MMX_READ_FILTER_AVG \ | PNG_ASM_FLAG_MMX_READ_FILTER_PAETH ); - asm_flags=png_get_asm_flags(png_ptr); - png_set_asm_flags(png_ptr, asm_flags & ~mmx_disable_mask); + asm_flags=png_get_asm_flags(ping); + png_set_asm_flags(ping, asm_flags & ~mmx_disable_mask); } #endif Okay. Sent patch to GraphicsMagick developers. [1] Aron [1] https://sourceforge.net/tracker/index.php?func=detail&aid=1541845&group_id=73485&atid=537937 Responsible Changed From-To: freebsd-i386->freebsd-ports-bugs This is a Ports issue, not a source issue. State Changed From-To: open->closed Already fixed by clsung 7 days ago - in a different manner. Thank you anyway. |