summaryrefslogtreecommitdiff
path: root/x11/fltk/patches/patch-ah
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2011-01-14 11:08:20 +0000
committerwiz <wiz@pkgsrc.org>2011-01-14 11:08:20 +0000
commit482843b74de68bb4c6cf98b5fc84fc94bcd60a35 (patch)
tree0fa32c04bfe6571d811ea631adcc36609ba6e306 /x11/fltk/patches/patch-ah
parent1aca6d563fc5300194f0f95fb8e23eac3d995d34 (diff)
downloadpkgsrc-482843b74de68bb4c6cf98b5fc84fc94bcd60a35.tar.gz
Fix build with png-1.5.
Diffstat (limited to 'x11/fltk/patches/patch-ah')
-rw-r--r--x11/fltk/patches/patch-ah49
1 files changed, 49 insertions, 0 deletions
diff --git a/x11/fltk/patches/patch-ah b/x11/fltk/patches/patch-ah
new file mode 100644
index 00000000000..59784427673
--- /dev/null
+++ b/x11/fltk/patches/patch-ah
@@ -0,0 +1,49 @@
+$NetBSD: patch-ah,v 1.4 2011/01/14 11:08:20 wiz Exp $
+
+Fix build with png-1.5.
+
+--- src/Fl_PNG_Image.cxx.orig 2006-06-09 16:16:34.000000000 +0000
++++ src/Fl_PNG_Image.cxx
+@@ -75,7 +75,7 @@ Fl_PNG_Image::Fl_PNG_Image(const char *p
+ pp = png_create_read_struct(PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
+ info = png_create_info_struct(pp);
+
+- if (setjmp(pp->jmpbuf))
++ if (setjmp(png_jmpbuf(pp)))
+ {
+ Fl::warning("PNG file \"%s\" contains errors!\n", png);
+ return;
+@@ -87,27 +87,21 @@ Fl_PNG_Image::Fl_PNG_Image(const char *p
+ // Get the image dimensions and convert to grayscale or RGB...
+ png_read_info(pp, info);
+
+- if (info->color_type == PNG_COLOR_TYPE_PALETTE)
++ if (png_get_color_type(pp, info) == PNG_COLOR_TYPE_PALETTE)
+ png_set_expand(pp);
+
+- if (info->color_type & PNG_COLOR_MASK_COLOR)
+- channels = 3;
+- else
+- channels = 1;
++ channels = png_get_channels(pp, info);
+
+- if ((info->color_type & PNG_COLOR_MASK_ALPHA) || info->num_trans)
+- channels ++;
+-
+- w((int)(info->width));
+- h((int)(info->height));
++ w((int)(png_get_image_width(pp, info)));
++ h((int)(png_get_image_height(pp, info)));
+ d(channels);
+
+- if (info->bit_depth < 8)
++ if (png_get_bit_depth(pp, info) < 8)
+ {
+ png_set_packing(pp);
+ png_set_expand(pp);
+ }
+- else if (info->bit_depth == 16)
++ else if (png_get_bit_depth(pp, info) == 16)
+ png_set_strip_16(pp);
+
+ # if defined(HAVE_PNG_GET_VALID) && defined(HAVE_PNG_SET_TRNS_TO_ALPHA)