summaryrefslogtreecommitdiff
path: root/audio/napster/files
diff options
context:
space:
mode:
authorPete Fritchman <petef@FreeBSD.org>2002-12-10 04:47:56 +0000
committerPete Fritchman <petef@FreeBSD.org>2002-12-10 04:47:56 +0000
commit24eb7256ad442797acfc8a0cab5233c9b4d5ae1e (patch)
tree55ef0a874b0eac2eddb59467897b23473627f492 /audio/napster/files
parentDuplicate the two different MD5 checksums for redhat-release-*.rpm (diff)
Upgrade to 1.5.1; this fixes a bug where the search function always
returned 0 results, more details at the port's homepage. PR: 46154 Submitted by: Andrew Thompson <andy@fud.org.nz> (with some changes) Approved by: portmgr (will)
Notes
Notes: svn path=/head/; revision=71488
Diffstat (limited to 'audio/napster/files')
-rw-r--r--audio/napster/files/patch-cmds.c12
-rw-r--r--audio/napster/files/patch-nap.c22
2 files changed, 0 insertions, 34 deletions
diff --git a/audio/napster/files/patch-cmds.c b/audio/napster/files/patch-cmds.c
deleted file mode 100644
index 940c1c002e56..000000000000
--- a/audio/napster/files/patch-cmds.c
+++ /dev/null
@@ -1,12 +0,0 @@
---- cmds.c.orig Sat Mar 9 17:29:08 2002
-+++ cmds.c Sat Mar 9 17:29:41 2002
-@@ -19,8 +19,8 @@
- #include <dlfcn.h>
- #include <sys/types.h>
- #include <sys/socket.h>
--#include <arpa/inet.h>
- #include <netinet/in.h>
-+#include <arpa/inet.h>
- #include <sys/time.h>
- #include <unistd.h>
- #include <signal.h>
diff --git a/audio/napster/files/patch-nap.c b/audio/napster/files/patch-nap.c
deleted file mode 100644
index 77af9210480c..000000000000
--- a/audio/napster/files/patch-nap.c
+++ /dev/null
@@ -1,22 +0,0 @@
---- nap.c.orig Fri Mar 1 11:17:37 2002
-+++ nap.c Sat Mar 9 17:24:26 2002
-@@ -1987,7 +1987,7 @@
- char *buf;
- char *p;
- int i, r;
-- int timeout;
-+ int timeout, on = 1;
-
- timeout = nvar_default("connecttimeout", CONNECTTIMEOUT);
-
-@@ -2010,6 +2010,10 @@
- wp(wchan, "Error creating socket: %s\n", strerror(errno));
- drw(wchan);
- return(-1);
-+ }
-+
-+ if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) == -1) {
-+ perror("setsockopt(SO_REUSEADDR)");
- }
-
- if (connect_t(s, (struct sockaddr *)&dst, sizeof(dst), timeout) == -1) {