Thu Sep 29 07:05:51 2011 UTC ()
needs unistd.h


(dholland)
diff -r1.8 -r1.9 pkgsrc/x11/xneko/distinfo
diff -r1.3 -r1.4 pkgsrc/x11/xneko/patches/patch-ab

cvs diff -r1.8 -r1.9 pkgsrc/x11/xneko/distinfo (expand / switch to unified diff)

--- pkgsrc/x11/xneko/distinfo 2007/01/18 00:37:26 1.8
+++ pkgsrc/x11/xneko/distinfo 2011/09/29 07:05:51 1.9
@@ -1,7 +1,7 @@ @@ -1,7 +1,7 @@
1$NetBSD: distinfo,v 1.8 2007/01/18 00:37:26 rillig Exp $ 1$NetBSD: distinfo,v 1.9 2011/09/29 07:05:51 dholland Exp $
2 2
3SHA1 (xneko.tar.gz) = f1eef2fcad823dce959489f7f6aecd0bcf8155c7 3SHA1 (xneko.tar.gz) = f1eef2fcad823dce959489f7f6aecd0bcf8155c7
4RMD160 (xneko.tar.gz) = 8876f0d72f525add21c1b716c02776a9b38b0a7e 4RMD160 (xneko.tar.gz) = 8876f0d72f525add21c1b716c02776a9b38b0a7e
5Size (xneko.tar.gz) = 21111 bytes 5Size (xneko.tar.gz) = 21111 bytes
6SHA1 (patch-aa) = 7182275a529e62686fc95678d9617da4ba799c4e 6SHA1 (patch-aa) = 7182275a529e62686fc95678d9617da4ba799c4e
7SHA1 (patch-ab) = f668f3858cb46a26d0a0897bd76adbd224c7179c 7SHA1 (patch-ab) = ed93533904fe017b7061dc18ab1a9674668b72dc

cvs diff -r1.3 -r1.4 pkgsrc/x11/xneko/patches/patch-ab (expand / switch to unified diff)

--- pkgsrc/x11/xneko/patches/patch-ab 2003/06/08 10:43:23 1.3
+++ pkgsrc/x11/xneko/patches/patch-ab 2011/09/29 07:05:51 1.4
@@ -1,23 +1,24 @@ @@ -1,23 +1,24 @@
1$NetBSD: patch-ab,v 1.3 2003/06/08 10:43:23 abs Exp $ 1$NetBSD: patch-ab,v 1.4 2011/09/29 07:05:51 dholland Exp $
2 2
3--- xneko.c.orig Tue Jun 1 02:46:10 1993 3--- xneko.c.orig Tue Jun 1 02:46:10 1993
4+++ xneko.c 4+++ xneko.c
5@@ -139,6 +139,9 @@ static char sccsid[] = "@(#)xneko.c 8.1  5@@ -139,6 +139,10 @@ static char sccsid[] = "@(#)xneko.c 8.1
6  6
7 #include <stdio.h> 7 #include <stdio.h>
8  8
9+#include <stdlib.h> 9+#include <stdlib.h>
10+#include <string.h> 10+#include <string.h>
 11+#include <unistd.h>
11+ 12+
12 #include <signal.h> 13 #include <signal.h>
13 #include <math.h> 14 #include <math.h>
14 #include <sys/time.h> 15 #include <sys/time.h>
15@@ -494,7 +497,7 @@ BitmapGCData BitmapGCDataTable[] = 16@@ -494,7 +498,7 @@ BitmapGCData BitmapGCDataTable[] =
16 &RightTogi1Xbm, rtogi1_bits, rtogi1_width, rtogi1_height }, 17 &RightTogi1Xbm, rtogi1_bits, rtogi1_width, rtogi1_height },
17 { &RightTogi2GC, 18 { &RightTogi2GC,
18 &RightTogi2Xbm, rtogi2_bits, rtogi2_width, rtogi2_height }, 19 &RightTogi2Xbm, rtogi2_bits, rtogi2_width, rtogi2_height },
19- { NULL, NULL, NULL, NULL, NULL } 20- { NULL, NULL, NULL, NULL, NULL }
20+ { NULL, NULL, 0, 0, 0 } 21+ { NULL, NULL, 0, 0, 0 }
21 }; 22 };
22  23
23 typedef struct { 24 typedef struct {