diff options
author | Mikhail Teterin <mi@FreeBSD.org> | 2007-11-02 14:50:52 +0000 |
---|---|---|
committer | Mikhail Teterin <mi@FreeBSD.org> | 2007-11-02 14:50:52 +0000 |
commit | 7ae64abc401e74431f4a24ce0940d6304f8fb0cf (patch) | |
tree | 63933fbfefe546497893ab62c19eaeb40fdd395a /graphics/GraphicsMagick12/files/patch-coders-png.c | |
parent | Add a mega-patch, which makes the library usable. It barely worked on (diff) |
Update from 1.1.7 to 1.1.10. FPX-support is now in (and no longer an
OPTION). Add support for running bundled self-tests after building.
Do not run the self-tests by default, in order to be able to secure
portmgr's approval, but advise the user to do so before installing.
The self-tests will be turned on, when port-freeze is over.
Approved by: portmgr (pav)
Diffstat (limited to 'graphics/GraphicsMagick12/files/patch-coders-png.c')
-rw-r--r-- | graphics/GraphicsMagick12/files/patch-coders-png.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/graphics/GraphicsMagick12/files/patch-coders-png.c b/graphics/GraphicsMagick12/files/patch-coders-png.c deleted file mode 100644 index 7a3b687f08cf..000000000000 --- a/graphics/GraphicsMagick12/files/patch-coders-png.c +++ /dev/null @@ -1,22 +0,0 @@ ---- coders/png.c 2004/11/11 03:10:42 1.369.2.3 -+++ coders/png.c 2006/08/18 04:03:02 1.369.2.4 -@@ -1709,7 +1709,7 @@ static Image *ReadOnePNGImage(MngInfo *m - #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 @@ static Image *ReadOnePNGImage(MngInfo *m - | 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 - |