aboutsummaryrefslogtreecommitdiffstats
path: root/japanese
diff options
context:
space:
mode:
authordinoex <dinoex@FreeBSD.org>2010-03-30 12:48:54 +0800
committerdinoex <dinoex@FreeBSD.org>2010-03-30 12:48:54 +0800
commit7818c8258484b037c760483ed846ca6164212560 (patch)
tree04fae528f751bcee0bb80ba39e7cb88821d1b62c /japanese
parent7041e2601bf0e92eff31199590712c8a93c398e5 (diff)
downloadfreebsd-ports-gnome-7818c8258484b037c760483ed846ca6164212560.tar.gz
freebsd-ports-gnome-7818c8258484b037c760483ed846ca6164212560.tar.zst
freebsd-ports-gnome-7818c8258484b037c760483ed846ca6164212560.zip
- fix build for png-1.4.1
Diffstat (limited to 'japanese')
-rw-r--r--japanese/emacs-emcws/files/patch-src-xfns.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/japanese/emacs-emcws/files/patch-src-xfns.c b/japanese/emacs-emcws/files/patch-src-xfns.c
new file mode 100644
index 000000000000..208256a93689
--- /dev/null
+++ b/japanese/emacs-emcws/files/patch-src-xfns.c
@@ -0,0 +1,20 @@
+--- src/xfns.c.orig 2002-12-06 18:05:35.000000000 +0100
++++ src/xfns.c 2010-03-30 06:35:54.000000000 +0200
+@@ -8641,7 +8641,7 @@
+
+ /* Check PNG signature. */
+ if (fread (sig, 1, sizeof sig, fp) != sizeof sig
+- || !png_check_sig (sig, sizeof sig))
++ || png_sig_cmp (sig, 0, sizeof sig))
+ {
+ image_error ("Not a PNG file: `%s'", file, Qnil);
+ UNGCPRO;
+@@ -8658,7 +8658,7 @@
+
+ /* Check PNG signature. */
+ if (tbr.len < sizeof sig
+- || !png_check_sig (tbr.bytes, sizeof sig))
++ || png_sig_cmp (tbr.bytes, 0, sizeof sig))
+ {
+ image_error ("Not a PNG image: `%s'", img->spec, Qnil);
+ UNGCPRO;