summaryrefslogtreecommitdiff
path: root/net-p2p/gtkhx/files
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-11-19 15:07:19 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-11-19 15:07:19 +0000
commit96bc072f91d794be75613052a73cac2aa11734b3 (patch)
treebd1c091c83efb856a4eb23d8216d7a1f645d7a54 /net-p2p/gtkhx/files
parentRemove libzvt, it is not used anymore by anything in the ports tree (diff)
Remove: does not run anymore
Notes
Notes: svn path=/head/; revision=372786
Diffstat (limited to 'net-p2p/gtkhx/files')
-rw-r--r--net-p2p/gtkhx/files/patch-src__cicn.h23
-rw-r--r--net-p2p/gtkhx/files/patch-src__files.c20
-rw-r--r--net-p2p/gtkhx/files/patch-src__hx.h13
3 files changed, 0 insertions, 56 deletions
diff --git a/net-p2p/gtkhx/files/patch-src__cicn.h b/net-p2p/gtkhx/files/patch-src__cicn.h
deleted file mode 100644
index 9b4b6ec77043..000000000000
--- a/net-p2p/gtkhx/files/patch-src__cicn.h
+++ /dev/null
@@ -1,23 +0,0 @@
---- src/cicn.h.orig 2014-11-05 22:52:21.000000000 -0800
-+++ src/cicn.h 2014-11-05 22:54:42.000000000 -0800
-@@ -1,7 +1,9 @@
-+#include <inttypes.h>
-+
- #define TYPE_cicn 0x6369636e
-
--typedef void *Ptr;
--typedef void **Handle;
-+typedef uint32_t Ptr;
-+typedef uint32_t Handle;
- typedef guint32 Fixed;
-
- struct Rect {
-@@ -39,7 +41,7 @@
- };
-
- typedef struct ColorTable ColorTable;
--typedef ColorTable *CTabPtr, **CTabHandle;
-+typedef uint32_t CTabHandle;
-
- struct PixMap {
- Ptr baseAddr PACKED; /* pointer to pixels */
diff --git a/net-p2p/gtkhx/files/patch-src__files.c b/net-p2p/gtkhx/files/patch-src__files.c
deleted file mode 100644
index d7150d1539a2..000000000000
--- a/net-p2p/gtkhx/files/patch-src__files.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/files.c.orig Tue Apr 8 05:05:31 2003
-+++ src/files.c Sun Jan 6 01:52:06 2008
-@@ -1000,7 +1000,7 @@
- gtk_hlist_clear(GTK_HLIST(files_list));
-
- for (fh = cfl->fh; (guint32)((char *)fh - (char *)cfl->fh) < cfl->fhlen;
-- (char *)fh += fh->len + SIZEOF_HL_DATA_HDR) {
-+ fh = (char *)fh + fh->len + SIZEOF_HL_DATA_HDR) {
- fh->fnlen = ntohl(fh->fnlen);
- fh->len = ntohs(fh->len);
- fh->fsize = ntohl(fh->fsize);
-@@ -1304,7 +1304,7 @@
- return 0;
-
- for (fh = cfl->fh; (guint32)((char *)fh - (char *)cfl->fh) < cfl->fhlen;
-- (char *)fh += fh->len + SIZEOF_HL_DATA_HDR) {
-+ fh = (char *)fh + fh->len + SIZEOF_HL_DATA_HDR) {
- if ((int)fh->fnlen == len && !strncmp(fh->fname, ent, len))
- return 1;
- }
diff --git a/net-p2p/gtkhx/files/patch-src__hx.h b/net-p2p/gtkhx/files/patch-src__hx.h
deleted file mode 100644
index 5a10948e68cc..000000000000
--- a/net-p2p/gtkhx/files/patch-src__hx.h
+++ /dev/null
@@ -1,13 +0,0 @@
---- src/hx.h.orig Tue Apr 8 05:05:31 2003
-+++ src/hx.h Fri Jan 11 01:49:32 2008
-@@ -172,10 +172,6 @@
-
- extern char **hxd_environ;
-
--#if !defined(HAVE_INET_NTOA_R)
--extern int inet_ntoa_r (struct in_addr in, char *buf, size_t buflen);
--#endif
--
- #ifndef HAVE_LOCALTIME_R
- extern struct tm *localtime_r (const time_t *t, struct tm *tm);
- #endif