summaryrefslogtreecommitdiff
path: root/net/gtk-gnutella
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2002-12-05 10:42:30 +0000
committertron <tron@pkgsrc.org>2002-12-05 10:42:30 +0000
commitffe3a39483e6338325dfe69c96f4a1ba34a957d9 (patch)
tree660823b597627dc024ef715b0ff4013daa99fd48 /net/gtk-gnutella
parent70ded09876b218b9977d1a9f4d33c86f423aa1f8 (diff)
downloadpkgsrc-ffe3a39483e6338325dfe69c96f4a1ba34a957d9.tar.gz
Remove patches obsoleted by last update.
Diffstat (limited to 'net/gtk-gnutella')
-rw-r--r--net/gtk-gnutella/patches/patch-aa11
-rw-r--r--net/gtk-gnutella/patches/patch-ab11
-rw-r--r--net/gtk-gnutella/patches/patch-ac11
-rw-r--r--net/gtk-gnutella/patches/patch-ad12
-rw-r--r--net/gtk-gnutella/patches/patch-ae11
5 files changed, 0 insertions, 56 deletions
diff --git a/net/gtk-gnutella/patches/patch-aa b/net/gtk-gnutella/patches/patch-aa
deleted file mode 100644
index a15327848fc..00000000000
--- a/net/gtk-gnutella/patches/patch-aa
+++ /dev/null
@@ -1,11 +0,0 @@
-$NetBSD: patch-aa,v 1.3 2002/11/26 21:44:48 cjep Exp $
---- src/walloc.c 2002/10/14 13:46:32 1.1
-+++ src/walloc.c 2002/10/26 01:44:07
-@@ -25,6 +25,7 @@
- *----------------------------------------------------------------------
- */
-
-+#include <stdlib.h>
- #include "walloc.h"
- #include "zalloc.h"
-
diff --git a/net/gtk-gnutella/patches/patch-ab b/net/gtk-gnutella/patches/patch-ab
deleted file mode 100644
index cca6eda7ff4..00000000000
--- a/net/gtk-gnutella/patches/patch-ab
+++ /dev/null
@@ -1,11 +0,0 @@
-$NetBSD: patch-ab,v 1.3 2002/11/26 21:44:48 cjep Exp $
---- src/vendors.c 2002/10/13 10:16:31 1.1
-+++ src/vendors.c 2002/10/26 01:16:22
-@@ -26,6 +26,7 @@
- #include "vendors.h"
-
- #include <ctype.h>
-+#include <string.h>
-
- struct {
- guint32 code;
diff --git a/net/gtk-gnutella/patches/patch-ac b/net/gtk-gnutella/patches/patch-ac
deleted file mode 100644
index d7c692ce9cd..00000000000
--- a/net/gtk-gnutella/patches/patch-ac
+++ /dev/null
@@ -1,11 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2002/11/26 21:44:49 cjep Exp $
---- src/getdate.y 2002/08/10 11:30:23 1.1
-+++ src/getdate.y 2002/10/26 01:24:23
-@@ -39,6 +39,7 @@
- */
-
- #include "config.h"
-+#include <stdlib.h>
-
- #ifdef HAVE_CONFIG_H
- # ifdef FORCE_ALLOCA_H
diff --git a/net/gtk-gnutella/patches/patch-ad b/net/gtk-gnutella/patches/patch-ad
deleted file mode 100644
index 7551f27a636..00000000000
--- a/net/gtk-gnutella/patches/patch-ad
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD: patch-ad,v 1.2 2002/11/26 21:44:49 cjep Exp $
---- src/fileinfo.c 2002/10/17 19:52:41 1.1
-+++ src/fileinfo.c 2002/10/26 01:09:28
-@@ -1797,7 +1797,7 @@
- if (stat(fi_tmp, &st) != -1) {
- g_warning("file_info_get(): "
- "assuming file \"%s\" is complete up to %lu bytes",
-- fi->file_name, st.st_size);
-+ fi->file_name, (unsigned long)st.st_size);
- fc = g_malloc0(sizeof(struct dl_file_chunk));
- fc->from = 0;
- fi->size = fc->to = st.st_size;
diff --git a/net/gtk-gnutella/patches/patch-ae b/net/gtk-gnutella/patches/patch-ae
deleted file mode 100644
index 6e8a3d838bd..00000000000
--- a/net/gtk-gnutella/patches/patch-ae
+++ /dev/null
@@ -1,11 +0,0 @@
-$NetBSD: patch-ae,v 1.2 2002/11/26 21:44:49 cjep Exp $
---- src/fuzzy.c 2002/09/24 23:05:00 1.1
-+++ src/fuzzy.c 2002/10/26 01:11:11
-@@ -28,6 +28,7 @@
- #include <stdio.h>
- #include <glib.h>
- #include <ctype.h>
-+#include <string.h>
-
- static char *fuzzy_strlower(char *a)
- {