diff src/gd-1-libpng15.patch @ 1620:7cc1f4c38523

package gd: libpng15 compatibility
author Tony Theodore <tonyt@logyst.com>
date Fri, 04 Mar 2011 03:27:12 +1100
parents
children f653602a0500
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/gd-1-libpng15.patch	Fri Mar 04 03:27:12 2011 +1100
@@ -0,0 +1,17 @@
+# This file is part of mingw-cross-env.
+# See doc/index.html for further information.
+
+This patch has been taken from:
+http://bugs.gentoo.org/show_bug.cgi?id=305101
+http://repos.archlinux.org/wsvn/packages/gd/trunk/libpng14.patch
+
+--- a/gd_png.c
++++ b/gd_png.c
+@@ -149,7 +149,7 @@
+ 	return NULL;
+   }
+ 
+-	if (!png_check_sig (sig, 8)) { /* bad signature */
++	if (png_sig_cmp (sig, 0, 8)) { /* bad signature */
+     	return NULL;		/* bad signature */
+ 	}