diff options
author | hubertf <hubertf@pkgsrc.org> | 2001-03-28 02:35:37 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2001-03-28 02:35:37 +0000 |
commit | f1d4582b26ccedaebec31f84046ca5e018276224 (patch) | |
tree | 444a082773dc4a9fdf51aa54fa0f93de2bf08bc5 /net/lopster/patches | |
parent | da3481ca8a3de21d9f03624df5a999ce9d4242d1 (diff) | |
download | pkgsrc-f1d4582b26ccedaebec31f84046ca5e018276224.tar.gz |
Update lopster to 0.9.8. Changes:
* Download bandwidth limitation
* Detachable windows
* etc.
Diffstat (limited to 'net/lopster/patches')
-rw-r--r-- | net/lopster/patches/patch-aa | 10 | ||||
-rw-r--r-- | net/lopster/patches/patch-ab | 11 | ||||
-rw-r--r-- | net/lopster/patches/patch-ac | 11 | ||||
-rw-r--r-- | net/lopster/patches/patch-ad | 13 |
4 files changed, 40 insertions, 5 deletions
diff --git a/net/lopster/patches/patch-aa b/net/lopster/patches/patch-aa index 7102ee955cd..58da972dd1b 100644 --- a/net/lopster/patches/patch-aa +++ b/net/lopster/patches/patch-aa @@ -1,10 +1,10 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/01/28 19:16:03 ad Exp $ +$NetBSD: patch-aa,v 1.2 2001/03/28 02:35:38 hubertf Exp $ ---- src/resume.c.orig Sun Jan 28 18:56:29 2001 -+++ src/resume.c Sun Jan 28 18:56:38 2001 -@@ -386,7 +386,7 @@ +--- src/resume.c.orig Tue Feb 13 22:03:14 2001 ++++ src/resume.c +@@ -391,7 +391,7 @@ if (stat(resume->filename, &st) < 0) { - strcpy(text, "non existent"); + strcpy(text, _("not existent")); } else { - sprintf(text, "%lu", st.st_size); + sprintf(text, "%lu", (u_long)st.st_size); diff --git a/net/lopster/patches/patch-ab b/net/lopster/patches/patch-ab new file mode 100644 index 00000000000..40749d5cab8 --- /dev/null +++ b/net/lopster/patches/patch-ab @@ -0,0 +1,11 @@ +$NetBSD: patch-ab,v 1.1 2001/03/28 02:35:38 hubertf Exp $ + +--- src/handler.c.orig Tue Feb 13 17:14:20 2001 ++++ src/handler.c +@@ -1,3 +1,6 @@ ++#ifdef __NetBSD__ ++#include <sys/types.h> ++#endif + #include <sys/socket.h> + #include <netinet/in.h> + #include <stdlib.h> diff --git a/net/lopster/patches/patch-ac b/net/lopster/patches/patch-ac new file mode 100644 index 00000000000..0e8d53ee03d --- /dev/null +++ b/net/lopster/patches/patch-ac @@ -0,0 +1,11 @@ +$NetBSD: patch-ac,v 1.1 2001/03/28 02:35:38 hubertf Exp $ + +--- src/browse.c.orig Mon Feb 12 21:50:55 2001 ++++ src/browse.c +@@ -1,3 +1,6 @@ ++#ifndef __NetBSD_ ++#include <sys/types.h> ++#endif + #include <sys/socket.h> + #include <sys/types.h> + #include <stdio.h> diff --git a/net/lopster/patches/patch-ad b/net/lopster/patches/patch-ad new file mode 100644 index 00000000000..7961106d13c --- /dev/null +++ b/net/lopster/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2001/03/28 02:35:38 hubertf Exp $ + +--- Makefile.in.orig Tue Feb 13 23:58:32 2001 ++++ Makefile.in +@@ -86,7 +86,7 @@ + VERSION = @VERSION@ + l = @l@ + +-SUBDIRS = src po intl ++SUBDIRS = src po #HF#intl + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs + CONFIG_HEADER = config.h |