summaryrefslogtreecommitdiff
path: root/graphics/png/patches
diff options
context:
space:
mode:
authorwiz <wiz>2007-01-06 21:48:50 +0000
committerwiz <wiz>2007-01-06 21:48:50 +0000
commit9c36a782801861fcb5b2cb8fd4ce0ee1662fbfef (patch)
treeb53ad3eb9ddf16a9c9ec75c914359fb8f2b5da6e /graphics/png/patches
parentfe988ad4ebb12b22e3c6e269b46358b45b8cd148 (diff)
downloadpkgsrc-9c36a782801861fcb5b2cb8fd4ce0ee1662fbfef.tar.gz
Update to 1.2.15:
version 1.2.15beta1 [December 3, 2006] Generated configure with autoconf-2.61 instead of 2.60 Revised configure.ac to update libpng.pc and libpng-config. version 1.2.15beta2 [December 3, 2006] Always export MMX asm functions, just stubs if not building pnggccrd.c version 1.2.15beta3 [December 4, 2006] Add "png_bytep" typecast to profile while calculating length in pngwutil.c version 1.2.15beta4 [December 7, 2006] Added scripts/CMakeLists.txt Changed PNG_NO_ASSEMBLER_CODE to PNG_NO_MMX_CODE in scripts, like 1.4.0beta version 1.2.15beta5 [December 7, 2006] Changed some instances of PNG_ASSEMBLER_* to PNG_MMX_* in pnggccrd.c Revised scripts/CMakeLists.txt version 1.2.15beta6 [December 13, 2006] Revised scripts/CMakeLists.txt and configure.ac version 1.2.15rc1 [December 18, 2006] Revised scripts/CMakeLists.txt version 1.2.15rc2 [December 21, 2006] Added conditional #undef jmpbuf in pngtest.c to undo #define in AIX headers. Added scripts/makefile.nommx version 1.2.15rc3 [December 25, 2006] Fixed shared library numbering error that was intruduced in 1.2.15beta6. version 1.2.15rc4 [December 27, 2006] Fixed handling of rgb_to_gray when png_ptr->color.gray isn't set. version 1.2.15rc5 [December 31, 2006] Revised handling of rgb_to_gray. version 1.2.15 [January 5, 2007] Added some (unsigned long) typecasts in pngtest.c to avoid printing errors.
Diffstat (limited to 'graphics/png/patches')
-rw-r--r--graphics/png/patches/patch-ab35
1 files changed, 0 insertions, 35 deletions
diff --git a/graphics/png/patches/patch-ab b/graphics/png/patches/patch-ab
deleted file mode 100644
index 3f63d84734f..00000000000
--- a/graphics/png/patches/patch-ab
+++ /dev/null
@@ -1,35 +0,0 @@
-$NetBSD: patch-ab,v 1.10 2006/04/16 19:39:46 wiz Exp $
-
---- pngtest.c.orig 2006-04-14 11:22:24.000000000 +0000
-+++ pngtest.c
-@@ -576,7 +576,7 @@ png_debug_free(png_structp png_ptr, png_
- }
- if (pinfo->next == NULL)
- {
-- fprintf(STDERR, "Pointer %x not found\n", (unsigned int)ptr);
-+ fprintf(STDERR, "Pointer %p not found\n", ptr);
- break;
- }
- ppinfo = &pinfo->next;
-@@ -1433,8 +1433,8 @@ main(int argc, char *argv[])
- current_allocation);
- while (pinfo != NULL)
- {
-- fprintf(STDERR, " %lu bytes at %x\n", pinfo->size,
-- (unsigned int) pinfo->pointer);
-+ fprintf(STDERR, " %lu bytes at %p\n", pinfo->size,
-+ pinfo->pointer);
- pinfo = pinfo->next;
- }
- }
-@@ -1508,8 +1508,8 @@ main(int argc, char *argv[])
- current_allocation);
- while (pinfo != NULL)
- {
-- fprintf(STDERR," %lu bytes at %x\n",
-- pinfo->size, (unsigned int)pinfo->pointer);
-+ fprintf(STDERR," %lu bytes at %p\n",
-+ pinfo->size, pinfo->pointer);
- pinfo = pinfo->next;
- }
- }