aboutsummaryrefslogtreecommitdiff
path: root/graphics/php5-gd
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2010-04-05 18:57:39 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2010-04-05 18:57:39 +0000
commit11443cddf9e0126a3e16a32332193fd52e881de1 (patch)
tree494afd004394690e8e69b88212bd82d3ac7b97a6 /graphics/php5-gd
parent74c60f53f75e59a0ac6226df5750d73a20b70821 (diff)
downloadports-11443cddf9e0126a3e16a32332193fd52e881de1.tar.gz
ports-11443cddf9e0126a3e16a32332193fd52e881de1.zip
- fix build for png-1.4.1
- bump PORTREVISION PR: 145247
Notes
Notes: svn path=/head/; revision=252257
Diffstat (limited to 'graphics/php5-gd')
-rw-r--r--graphics/php5-gd/files/patch-libgd_gd_png.c14
1 files changed, 14 insertions, 0 deletions
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;
+ }
+