diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2010-04-05 18:57:39 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2010-04-05 18:57:39 +0000 |
commit | 11443cddf9e0126a3e16a32332193fd52e881de1 (patch) | |
tree | 494afd004394690e8e69b88212bd82d3ac7b97a6 /graphics/php4-gd/files | |
parent | - Mark BROKEN: size mismatch (diff) |
- fix build for png-1.4.1
- bump PORTREVISION
PR: 145247
Diffstat (limited to 'graphics/php4-gd/files')
-rw-r--r-- | graphics/php4-gd/files/patch-libgd_gd_png.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/graphics/php4-gd/files/patch-libgd_gd_png.c b/graphics/php4-gd/files/patch-libgd_gd_png.c new file mode 100644 index 000000000000..41aae43e89cf --- /dev/null +++ b/graphics/php4-gd/files/patch-libgd_gd_png.c @@ -0,0 +1,14 @@ +--- libgd/gd_png.c.orig 2007-05-17 00:54:11.000000000 +0200 ++++ libgd/gd_png.c 2010-04-05 20:43:02.000000000 +0200 +@@ -136,7 +136,11 @@ + * have used slightly more general png_sig_cmp() function instead + */ + gdGetBuf(sig, 8, infile); ++#if PNG_LIBPNG_VER >= 10400 ++ if (png_sig_cmp (sig, 0, 8)) { /* bad signature */ ++#else + if (!png_check_sig (sig, 8)) { /* bad signature */ ++#endif + return NULL; + } + |