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 | |
parent | 74c60f53f75e59a0ac6226df5750d73a20b70821 (diff) | |
download | ports-11443cddf9e0126a3e16a32332193fd52e881de1.tar.gz ports-11443cddf9e0126a3e16a32332193fd52e881de1.zip |
Notes
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/php4-gd/files/patch-libgd_gd_png.c | 14 | ||||
-rw-r--r-- | graphics/php5-gd/files/patch-libgd_gd_png.c | 14 |
2 files changed, 28 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; + } + diff --git a/graphics/php5-gd/files/patch-libgd_gd_png.c b/graphics/php5-gd/files/patch-libgd_gd_png.c new file mode 100644 index 000000000000..95934bfc5089 --- /dev/null +++ b/graphics/php5-gd/files/patch-libgd_gd_png.c @@ -0,0 +1,14 @@ +--- libgd/gd_png.c.orig 2009-03-14 18:48:42.000000000 +0100 ++++ libgd/gd_png.c 2010-04-05 19:54:05.000000000 +0200 +@@ -139,7 +139,11 @@ + return NULL; + } + ++#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; + } + |